-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
65 lines (65 loc) · 2.11 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
{
"name": "cli-promotional-deployment",
"version": "0.7.8-RELEASE",
"engines": {
"node": ">=14.17.0",
"npm": ">=6.13.4"
},
"description": "A wrapping command line for common tasks with akamai's PM {OPEN} API.",
"repository": "https://github.com/akamai/cli-property-manager",
"license": "Apache-2.0",
"author": "[email protected]",
"main": "index.js",
"bin": {
"devops-prov": "./bin/akamai-pipeline",
"pipeline": "./bin/akamai-pipeline",
"akamai-pl": "./bin/akamai-pipeline",
"akamai-pd": "./bin/akamai-pipeline",
"property-manager": "./bin/akamai-property-manager",
"snippets": "./bin/akamai-property-manager"
},
"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",
"test-for-sonarqube": "nyc --report-dir=dist/coverage --reporter=lcov --reporter=text-lcov mocha --recursive tests",
"jsdoc": "jsdoc -c jsdoc.config.json",
"eslint": "eslint -c eslintrc.json index.js ./bin ./src",
"build-dev": "npm run pegjs && npm run jsbeautify && npm run test-for-sonarqube && npm run eslint && npm run docs",
"build": "npm run pegjs"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.11.0",
"eslint-plugin-node": "^5.2.1",
"js-beautify": "^1.8.8",
"jsdoc": "^3.6.10",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"testdouble": "^3.8.2",
"webpack": "^4.41.3"
},
"dependencies": {
"ajv": "^6.12.6",
"ajv-keywords": "^3.4.0",
"ascii-data-table": "^2.1.1",
"chalk": "^2.3.2",
"commander": "^4.1.1",
"debug": "^3.2.6",
"email-validator": "2.0.4",
"inquirer": "^8.2.1",
"log4js": "^6.4.4",
"moment": "^2.20.1",
"pegjs": "^0.10.0",
"request": "^2.88.0",
"request-debug": "^0.2.0",
"underscore": "^1.13.2",
"uuid": "^3.3.2"
}
}