-
Notifications
You must be signed in to change notification settings - Fork 835
/
package.json
37 lines (37 loc) · 1.17 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
{
"author": "Apache Software Foundation",
"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": ">=16.20.2"
},
"version": "7.0.0-dev",
"repository": "github:apache/cordova-js",
"bugs": "https://github.com/apache/cordova-js/issues",
"bin": "build-tools/cli.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"pretest": "npm run build:test",
"test": "npm run lint && karma start",
"build": "grunt compile",
"build:test": "node build-tools/test-build pkg/cordova.test.js"
},
"license": "Apache-2.0",
"dependencies": {
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@cordova/eslint-config": "^5.1.0",
"cordova-android": "^9.1.0",
"cordova-ios": "^5.1.1",
"eslint-plugin-es5": "^1.5.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"puppeteer": "^23.6.0"
}
}