-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "js-acl",
"version": "1.0.0",
"description": "Provides a lightweight and flexible ACL implementation for privileges management in JS/NodeJS",
"homepage": "https://github.com/StyleT/js-acl",
"main": "./dist/acl.js",
"scripts": {
"compile": "browserify -s JsAcl -r ./src/index.js | derequire > ./dist/acl.js",
"test": "mocha",
"test-browser": "karma start",
"coverage": "istanbul cover _mocha -- -u exports -R nyan",
"preversion": "npm run test && npm run test-browser",
"version": "npm run compile && git add -A dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StyleT/js-acl.git"
},
"keywords": [
"acl",
"javascript",
"js"
],
"author": "Vlad Fedosov <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/StyleT/js-acl/issues"
},
"devDependencies": {
"browserify": "^13.0.1",
"chai": "^3.5.0",
"derequire": "^2.0.3",
"istanbul": "^0.4.3",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"mocha": "^2.5.3",
"phantomjs": "^1.9.18"
}
}