-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
70 lines (70 loc) · 1.81 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
{
"name": "cordova-simulate",
"version": "1.3.2",
"description": "Simulates your Cordova application in the browser.",
"main": "src/simulate.js",
"bin": {
"simulate": "./bin/simulate"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/cordova-simulate"
},
"keywords": [
"cordova",
"plugins",
"simulation"
],
"author": {
"name": "Microsoft Corp."
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/cordova-simulate/issues"
},
"homepage": "https://github.com/Microsoft/cordova-simulate",
"engines": {
"node": ">= 10.0.0",
"npm": ">= 5.6.0"
},
"dependencies": {
"body-parser": "^1.20.2",
"browserify": "^17.0.0",
"chalk": "^4.1.2",
"chokidar": "^3.4.2",
"cookie": "^0.7.0",
"cordova-registry-mapper": "^1.1.12",
"cordova-serve": "^4.0.1",
"csp-parse": "^0.0.2",
"debug": "^4.3.1",
"glob": "^8.1.0",
"minimist": "^1.2.8",
"replacestream": "^4.0.0",
"send-transform": "^0.15.1",
"socket.io": "^2.4.1",
"through2": "^4.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/mocha": "^10.0.1",
"@xmldom/xmldom": "^0.8.3",
"gulp": "^5.0.0",
"gulp-eslint": "^6.0.0",
"gulp-jsonlint": "^1.3.2",
"husky": "^8.0.2",
"in-publish": "^2.0.1",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"mstranslator": "^3.0.0",
"parse5": "^7.1.2",
"pretty-data": "^0.40.0"
},
"scripts": {
"update-loc": "node ./tools/i18n/update",
"eslint": "npx eslint .",
"prepare": "husky install",
"test": "mocha ./test/*.js --ui tdd --timeout 100000 --reporter mocha-multi-reporters --reporter-options configFile=./test/mochaReporterConfig.json"
}
}