forked from sony/cdp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.96 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "cdp-cli",
"version": "0.1.5-dev",
"description": "CDP Command Line Interface",
"main": "dist/cdp-cli.min.js",
"scripts": {
"submodule": "node ./tasks/submodule.js",
"libmodule": "node ./tasks/libmodule.js",
"test": "run-s -l clean compile lint unit-test",
"ci": "run-s -l clean build lint unit-test metrics document",
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"check:update": "npm outdated || exit 0",
"update": "npm update --save-dev && npm update --save && npm run package",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
"depends:dev": "npm list --depth=0 --only=dev",
"debug": "node --inspect --debug-brk ./node_modules/jasmine-node/bin/jasmine-node tests/unit/",
"debug:inspect": "node-debug ./node_modules/jasmine-node/bin/jasmine-node tests/unit/",
"clean": "node ./tasks/clean.js",
"clean:temp": "node ./tasks/clean.js --temp",
"clean:coverage": "node ./tasks/clean.js --coverage",
"clean:typedoc": "node ./tasks/clean.js --typedoc",
"clean:test": "node ./tasks/clean.js --test",
"clean:built": "node ./tasks/clean.js --built",
"clean:pkg": "node ./tasks/clean.js --pkg",
"build": "run-s -l compile bundle minify",
"build:ts": "run-s compile:ts bundle:ts minify:ts",
"compile": "node ./tasks/clean.js --built --test && run-p compile:*",
"compile:ts": "run-s compile:ts:* ",
"compile:ts:src": "tsc -p ./tsconfig.json",
"compile:ts:test": "tsc -p ./tests/unit/tsconfig.json",
"bundle": "run-p bundle:* ",
"bundle:ts": "webpack --config ./webpack.config.js && node ./tasks/bundle-finalizer.js",
"minify": "run-p minify:*",
"minify:ts": "uglifyjs dist/cdp-cli.js -o dist/cdp-cli.min.js --comments /^!/ --source-map includeSources,url=cdp-cli.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js built/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts src/**/*.ts",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "node ./node_modules/jasmine-node/bin/jasmine-node tests/unit/",
"coverage": "run-s clean:coverage compile:ts coverage:exec",
"coverage:exec": "nyc --reporter=html --reporter=text --report-dir=docs/reports/coverage --temp-directory=docs/reports/coverage -n=built/** ./node_modules/jasmine-node/bin/jasmine-node tests/unit/",
"document": "typedoc --out docs/typedoc/ src/",
"metrics": "plato -r -d docs/reports/metrics -e ./tests/eslint/eslintrc.json built/**/*.js"
},
"bin": {
"cdp": "bin/cdp"
},
"files": [
"bin",
"dist",
"docs",
"res"
],
"repository": {
"type": "git",
"url": "https://github.com/sony/cdp-cli.git"
},
"keywords": [
"CDP",
"cli",
"cordova",
"electron",
"TypeScript"
],
"author": "Shin Ogata",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sony/cdp-cli/issues"
},
"homepage": "https://github.com/sony/cdp-cli#readme",
"dependencies": {
"cdp-lib": "^0.1.2",
"commander": "^2.13.0",
"inquirer": "^5.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/del": "^3.0.0",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.34",
"@types/inquirer": "0.0.36",
"@types/jasmine": "^2.8.4",
"@types/jquery": "^3.2.16",
"@types/lodash": "^4.14.82",
"@types/node": "^9.3.0",
"@types/underscore.string": "^0.0.32",
"@types/uuidjs": "^3.6.0",
"@types/which": "^1.3.1",
"convert-source-map": "^1.5.1",
"del": "^3.0.0",
"dts-bundle": "^0.7.3",
"eslint": "^4.15.0",
"jasmine-node": "^2.0.0",
"npm-run-all": "^4.1.2",
"nyc": "^11.4.1",
"plato": "^1.7.0",
"source-map": "^0.6.1",
"source-map-loader": "^0.2.3",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "^2.6.1",
"typescript-formatter": "^7.0.1",
"uglify-es": "^3.1.7",
"webpack": "^3.10.0"
}
}