-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 913 Bytes
/
package.json
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
39
40
41
42
43
44
45
46
47
{
"name": "cordova-plugin-shared-preferences",
"version": "0.0.1",
"description": "Cordova plugin for Android's Native key value storage system.",
"scripts": {
"clean": "rimraf www",
"build": "babel src/js --out-dir www",
"prepublish": "npm-run-all clean build"
},
"cordova": {
"id": "cordova-plugin-shared-preferences",
"platforms": [
"android"
]
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"npm-run-all": "^2.1.1",
"rimraf": "^2.5.2"
},
"repository": "rehy/cordova-plugin-shared-preferences",
"keywords": [
"cordova",
"preferences",
"ecosystem:cordova",
"plugin",
"android"
],
"author": {
"name": "Ratson"
},
"license": "MIT",
"files": [
"*.js",
"*.md",
"*.xml",
"LICENSE",
"src",
"www"
],
"babel": {
"presets": [
"es2015"
]
}
}