-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.06 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
{
"name": "akamaicliappsec",
"version": "1.2.2",
"description": "A wrapping development kit to interface common tasks with akamai's Security {OPEN} API.",
"repository": "https://github.com/akamai/cli-appsec",
"license": "Apache-2.0",
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"lint": "eslint src",
"test": "mocha",
"precommit": "lint-staged"
},
"bin": {
"appsec": "bin/akamai-appsec"
},
"files": [
"bin/commands",
"src",
"templates"
],
"dependencies": {
"child-process-promise": "^2.2.1",
"edgegrid": "^3.0.4",
"pino": "^4.10.4",
"string-format": "^0.5.0",
"sywac": "^1.2.0",
"untildify": "^3.0.2",
"yarn": "^1.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.17.0",
"fs": "0.0.1-security",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"prettier": "^1.6.1",
"sinon": "^4.2.2"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --print-width 100 --write",
"git add"
]
}
}