-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 762 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "android-versions",
"version": "2.1.1",
"description": "Get the name, API level, version level, or version code from any version of Android.",
"main": "index.js",
"scripts": {
"test": "tape tests/**/*.js",
"jshint": "jshint ."
},
"dependencies": {
"semver": "^7.5.2"
},
"devDependencies": {
"jshint": "^2.13.6",
"tape": "^5.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dvoiss/android-versions"
},
"bugs": {
"url": "https://github.com/dvoiss/android-versions/issues"
},
"keywords": [
"android",
"version",
"versions",
"nougat",
"marshmallow",
"api",
"level"
],
"pre-commit": [
"jshint"
],
"author": "dvoiss",
"license": "MIT"
}