-
Notifications
You must be signed in to change notification settings - Fork 820
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.35 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.35 KB
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
{
"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": ">=22.17.0"
},
"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 .",
"lint:fix": "npm run lint -- --fix",
"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",
"devDependencies": {
"@cordova/eslint-config": "^6.0.1",
"cordova-android": "https://dlcdn.apache.org/cordova/platforms/cordova-android-source-15.0.0.tar.gz",
"cordova-ios": "https://dlcdn.apache.org/cordova/platforms/cordova-ios-source-8.0.1.tar.gz",
"eslint-plugin-es5": "^1.5.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"jasmine-core": "^6.1.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"puppeteer": "^24.40.0"
},
"overrides": {
"grunt": {
"minimatch": "^3.1.5"
}
}
}