forked from nordnet/cordova-hot-code-push-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"name": "cordova-hot-code-push-cli",
"version": "1.1.1",
"description": "Cordova Hot Code Push CLI",
"preferGlobal": "true",
"bin": {
"cordova-hcp": "bin/cordova-hcp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nordnet/cordova-hot-code-push-cli.git"
},
"keywords": [
"cordova",
"nordnet",
"mobile",
"cordova-hot-code-push-plugin",
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"scripts": {
"pretranspile": "rimraf dist",
"transpile": "babel src --out-dir dist --source-maps",
"dev": "npm run transpile -- --watch",
"eslint": "eslint --ext=.js -c .eslintrc src",
"test": "mocha"
},
"author": "Andreas Hassellöf for Nordnet Bank AB",
"license": "MIT",
"dependencies": {
"async": "^3.2.4",
"compression": "^1.7.4",
"es6-promise": "^4.2.8",
"express": "^4.18.2",
"fs-extra": "^11.0.0",
"hidefile": "^3.0.0",
"lodash": "^4.17.21",
"minimatch": "^5.1.0",
"ngrok": "^4.3.3",
"prompt": "^1.3.0",
"q": "^1.5.1",
"readdirp": "^3.6.0",
"recursive-readdir": "^2.2.3",
"socket.io": "^4.5.4",
"yargs": "^17.6.2"
},
"devDependencies": {
"babel": "^5.8.38",
"babel-eslint": "^4.0.5",
"babel-jscs": "^2.0.5",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-react": "^7.31.11",
"jscs": "^2.0.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"sinon": "^15.0.0",
"sinon-chai": "^3.7.0"
}
}