forked from apache/cordova-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.35 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"author": "Gord Tanner <[email protected]> (https://github.com/gtanner)",
"name": "cordova-js",
"description": "Cordova JavaScript: a unified JavaScript layer for the Cordova suite of projects enabling cross-platform native mobile development of applications using HTML, CSS and JavaScript.",
"engines": {
"node": ">=8.0.0"
},
"version": "6.0.0-dev",
"homepage": "http://cordova.apache.org",
"repository": {
"type": "git",
"url": "https://github.com/apache/cordova-js"
},
"bugs": {
"url": "https://issues.apache.org/jira/browse/CB"
},
"scripts": {
"eslint": "eslint --ignore-path .gitignore .",
"pretest": "npm run build:test",
"test": "npm run eslint && karma start",
"build": "grunt compile",
"build:test": "node build-tools/test-build pkg/cordova.test.js"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Fil Maj",
"email": "[email protected]"
},
{
"name": "Jesse MacFadyen",
"email": "[email protected]"
},
{
"name": "Bryce Curtis",
"email": ""
},
{
"name": "Drew Walters",
"email": ""
},
{
"name": "Patrick Mueller",
"email": ""
},
{
"name": "Simon MacDonald",
"email": ""
},
{
"name": "Becky Gibson",
"email": ""
},
{
"name": "Anis Kadri",
"email": "[email protected]"
},
{
"name": "Dan Silivestru",
"email": "[email protected]"
},
{
"name": "Shazron Abdullah",
"email": "[email protected]"
},
{
"name": "Steve Gill",
"email": "[email protected]"
}
],
"dependencies": {
"eslint-plugin-es5": "^1.4.1",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"globby": "^9.2.0"
},
"devDependencies": {
"cordova-android": "^8.0.0",
"cordova-ios": "^5.0.0",
"eslint": "^5.16.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"jasmine-core": "^3.3.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"puppeteer": "^1.14.0"
}
}