-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "guard-bit",
"version": "1.0.4",
"description": "Utility to split opportunities by the account level (free\\pro\\enterprise\\etc.) for frontend and node",
"main": "guard.js",
"keywords": [
"access",
"control",
"acl",
"guard",
"auth",
"authorized",
"unauthorized"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul test _mocha",
"prepublish": "./node_modules/uglify-js/bin/uglifyjs guard.js -o guard.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/iofjuupasli/guard.git"
},
"author": "Tretyak Valery <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iofjuupasli/guard/issues"
},
"homepage": "https://github.com/iofjuupasli/guard",
"devDependencies": {
"chai": "^1.9.2",
"chai-spies": "^0.5.1",
"coveralls": "^2.11.2",
"istanbul": "^0.3.2",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "0.0.1",
"uglify-js": "^2.4.15"
},
"testling": {
"browsers": [
"iexplore/6..latest",
"chrome/4..latest",
"firefox/3..latest",
"opera/10..latest",
"safari/4..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
],
"harness": "mocha-bdd",
"files": "test/*.js"
}
}