-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "angularjs-acl",
"version": "0.1.2",
"description": "Provides a lightweight and flexible ACL implementation for privileges management in AngularJS",
"main": "./dist/acl.js",
"scripts": {
"bower": "bower",
"test": "karma start",
"compile": "browserify ./src/acl.js | derequire > ./dist/acl.js",
"preversion": "npm run test",
"version": "npm run compile && git add -A dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StyleT/angularjs-acl.git"
},
"keywords": [
"acl",
"angular"
],
"author": "Vlad Fedosov <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/StyleT/angularjs-acl/issues"
},
"homepage": "https://github.com/StyleT/angularjs-acl#readme",
"devDependencies": {
"js-acl": "^0.1.2",
"bower": "~1.4.1",
"browserify": "^13.0.1",
"derequire": "^2.0.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18"
}
}