-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cordova-plugin-exclude-files",
"version": "1.0.1",
"description": "A cordova plugin that allows to exclude files from the build",
"license": "MIT",
"author": "Raphael von der Grün",
"files": [
"scripts",
"plugin.xml"
],
"repository": "raphinesse/cordova-plugin-exclude-files",
"scripts": {
"test": "xo && nyc ava",
"test:legacy": "npx -p node-bin@6 -- ava",
"version": "cordova-plugin-xml setVersion && git add plugin.xml"
},
"xo": {
"space": 2,
"prettier": true
},
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"cordova-find-config": "^0.1.1",
"del": "^4.0.0",
"lodash": "^4.17.11",
"p-map": "^2.0.0",
"pify": "^4.0.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"ava": "^1.3.1",
"cordova-plugin-xml": "^0.1.2",
"dir-compare": "^1.7.2",
"fs-extra": "^8.1.0",
"nyc": "^14.1.1",
"tmp-promise": "^1.0.5",
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
},
"cordova": {
"id": "cordova-plugin-exclude-files",
"platforms": [
"android",
"blackberry",
"browser",
"firefoxos",
"ios",
"osx",
"ubuntu",
"windows",
"wp8"
]
},
"keywords": [
"ignores",
"excludes",
"folders",
"artifacts",
"directory",
"directories",
"ecosystem:cordova",
"cordova-android",
"cordova-blackberry",
"cordova-browser",
"cordova-firefoxos",
"cordova-ios",
"cordova-osx",
"cordova-ubuntu",
"cordova-windows",
"cordova-wp8"
]
}