forked from akamai/cli-property-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "cli-promotional-deployment",
"version": "0.3.0",
"engines": {
"node": ">=8.0.0"
},
"description": "Akamai CLI Promotional Deployment SDK and CLI",
"author": "jmenzel@akamai.com",
"main": "index.js",
"bin": {
"devops-prov": "./bin/akamai-pipeline",
"pipeline": "./bin/akamai-pipeline",
"akamai-pl": "./bin/akamai-pipeline",
"akamai-pd": "./bin/akamai-pipeline",
"snippets": "./bin/akamai-snippets"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.12.0",
"eslint-plugin-node": "^5.2.1",
"js-beautify": "^1.7.5",
"jsdoc-to-markdown": "^4.0.1",
"jsdoc": "~3.5.5",
"mocha": "^4.0.1",
"nyc": "^11.6.0",
"pegjs": "^0.10.0",
"testdouble": "^3.2.6",
"webpack": "^3.8.1"
},
"config": {
"env": "dev"
},
"scripts": {
"docs": "jsdoc2md src/*.js src/pm/*.js > docs/api.md",
"jsbeautify": "./scripts/jsbeautify.sh",
"pegjs": "pegjs -o src/expression_parser.js resources/expression_parser.pegjs",
"test": "mocha --recursive tests",
"test-with-coverage": "nyc --report-dir=dist/coverage --reporter=text --reporter=html mocha --recursive tests",
"jsdoc": "jsdoc -c jsdoc.config.json",
"eslint": "eslint -c eslintrc.json index.js ./bin ./src",
"build": "npm run pegjs && npm run jsbeautify && npm run test && npm run eslint && npm run docs"
},
"dependencies": {
"ascii-data-table": "^2.1.1",
"chalk": "^2.3.2",
"commander": "^2.11.0",
"debug": "^3.1.0",
"log4js": "^2.4.1",
"moment": "^2.20.1",
"request": "^2.83.0",
"request-debug": "^0.2.0",
"underscore": "^1.9.1",
"uuid": "^3.1.0",
"email-validator": "2.0.4"
}
}