This repository was archived by the owner on Jul 16, 2026. It is now read-only.
forked from nordnet/cordova-hot-code-push-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.31 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
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
{
"name": "cordova-hot-code-push-cli",
"version": "1.1.1",
"description": "Cordova Hot Code Push CLI",
"preferGlobal": true,
"bin": {
"cordova-hcp": "bin/cordova-hcp.js"
},
"engines": {
"node": ">=14.0.0"
},
"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"
],
"files": [
"bin",
"dist"
],
"source": "src/init.js",
"main": "dist/main.js",
"scripts": {
"dev": "npm run transpile -- --watch",
"eslint": "eslint --ext=.js -c .eslintrc src",
"test": "mocha",
"prebuildclix": "rimraf dist",
"buildcli": "./node_modules/.bin/babel src --watch --out-dir dist --source-maps",
"serve": "node ./bin/cordova-hcp.js server",
"login": "node ./bin/cordova-hcp.js login",
"build": "node ./bin/cordova-hcp.js build",
"deploy": "node ./bin/cordova-hcp.js deploy"
},
"author": "Andreas Hassellöf for Nordnet Bank AB",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"core-js": "^3.18.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"get-all-files": "^4.1.0",
"hidefile": "^3.0.0",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"ngrok": "^4.2.2",
"prompt": "^1.2.0",
"readdirp": "^3.6.0",
"s3-sync-client": "^2.1.0",
"socket.io": "^4.3.1",
"watch": "^1.0.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"eslint": "^8.0.1",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-react": "^7.26.1",
"mocha": "^9.1.3",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
}
}