This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.46 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": "pgb-cli",
"version": "1.1.3",
"description": "nodeJS CLI to PhoneGap Build",
"keywords": [
"PhoneGap",
"Cordova",
"PhoneGap Build",
"cli"
],
"bugs": {
"url": "https://github.com/phonegap-build/pgb-cli/issues"
},
"bin": {
"pgb": "./bin/pgb"
},
"scripts": {
"test": "eslint ./ && jest",
"build": "yarn test && rm -rf ./lib && babel ./src --out-dir lib && cp -R ./src/commands/usage ./lib/commands/usage",
"package": "yarn build && ./scripts/package.sh"
},
"engines": {
"node": ">=6.0.0"
},
"main": "./lib/index.js",
"pkg": {
"scripts": "lib/**/*.js",
"assets": [
"lib/**/*.txt",
"package.json"
]
},
"preferGlobal": true,
"author": "Brett Rudd <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "phonegap-build/pgb-cli"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.10.4",
"babel-preset-minify": "^0.4.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.13.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.5.0",
"jest-plugin-fs": "^2.9.0",
"mock-stdin": "^0.3.1",
"pkg": "^4.3.0",
"std-mocks": "^1.0.1"
},
"dependencies": {
"easy-utf8-table": "^0.2.0",
"pgb-api": "^1.1.2",
"visualwidth": "^0.1.0"
}
}