-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
{
"name": "cfg-js",
"version": "0.0.1",
"author": "Nera Liu",
"contributors": [
"Nera Liu <[email protected]>"
],
"description": "",
"bin": {
"cfg-js": "bin/cfg-js"
},
"repository": {
"type": "git",
"url": "[email protected]:neraliu/cfg-js.git"
},
"keywords": [
"xss"
],
"scripts": {
"hint": "grunt jshint",
"build": "npm install; grunt",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
"bluebird": "^2.10.2",
"esprima": "^2.6.0",
"loglevel": "^1.4.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"chai": "^3.3.0",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-uglify": "^0.9.2",
"grunt-mocha-istanbul": "^3.0.1",
"grunt-run": "^0.5.2",
"istanbul": "^0.3.22",
"mocha": "^2.3.3"
},
"main": "./src/cfg-js.js",
"bugs": {
"url": "https://github.com/neraliu/cfg-js/issues"
},
"directories": {
"test": "tests"
},
"license": "SEE LICENSE IN LICENSE"
}