-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.95 KB
/
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
48
49
50
51
{
"name": "cordova-plugin-awesome-shared-preferences",
"version": "0.1.0",
"description":
"Shared preferences for Cordova. Save and retrieve persistent key-value pairs of any Javascript data type.",
"cordova": {
"id": "cordova-plugin-shared-preferences",
"platforms": ["android", "ios"]
},
"scripts": {
"docs": "jsdoc2md --template README.hbs www/index.js > README.md",
"precommit": "lint-staged && npm run docs && git add README.md",
"test:android": "cordova-paramedic --platform android --plugin ./",
"test:ios": "cordova-paramedic --platform ios --plugin ./"
},
"keywords": ["ecosystem:cordova", "cordova-android", "cordova-ios", "shared", "preferences"],
"author": "Adriano Di Giovanni <[email protected]> (http://adrianodigiovanni.com/)",
"license": "MIT",
"devDependencies": {
"cordova-paramedic": "^0.5.0",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/adriano-di-giovanni/cordova-plugin-shared-preferences.git"
},
"bugs": {
"url": "https://github.com/adriano-di-giovanni/cordova-plugin-shared-preferences/issues"
},
"homepage": "https://github.com/adriano-di-giovanni/cordova-plugin-shared-preferences#readme"
}