-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 KB
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
{
"name": "json-csp-manager",
"version": "0.0.1",
"description": "Manage complex CSP rules simply",
"main": "index.js",
"scripts": {
"prebuild-bin": "rm -rf bin",
"build-bin": "babel src/bin -d bin",
"prebuild-lib": "rm -rf lib",
"build-lib": "babel src/lib -d lib",
"build": "npm run build-lib && npm run build-bin",
"prepublish": "npm run build && npm run build-doc",
"build-doc": "./node_modules/esdoc/out/src/ESDocCLI.js -c esdoc.json",
"codereview-lib": "./node_modules/eslint/bin/eslint.js src/lib",
"codereview-bin": "./node_modules/eslint/bin/eslint.js src/bin",
"codereview": "npm run codereview-lib && npm run codereview-bin",
"pretest": "npm run build",
"test": "./node_modules/mocha/bin/mocha --recursive tests/",
"posttest": "npm run codereview"
},
"bin": {
"json-csp-manager": "./bin/json-csp-manager.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/john-whitley/json-csp-manager.git"
},
"keywords": [
"CSP",
"JSON"
],
"author": "John Whitley",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/john-whitley/json-csp-manager/issues"
},
"homepage": "https://github.com/john-whitley/json-csp-manager#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"esdoc": "^0.4.6",
"eslint": "^2.4.0",
"eslint-config-nightmare-mode": "^2.3.0",
"mocha": "^2.4.5"
},
"dependencies": {
"cli": "^0.11.2",
"cli-table": "^0.3.1",
"jsonschema": "^1.1.0",
"uuid5": "^1.0.1"
}
}