-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "imperium",
"version": "3.1.1",
"description": "Imperium is a role-based user's authorizations (ACL) library for Node.js.",
"main": "src/index.js",
"files": [
"src"
],
"nyc": {
"include": [
"src/"
]
},
"scripts": {
"lint": "standard src/**",
"test": "npm run lint && nyc ava --verbose --serial --fail-fast test/ && nyc report --reporter=html",
"test:watch": "ava --watch test/",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm test"
},
"contributors": [
{
"name": "Benjamin Canac (@benjamincanac)"
},
{
"name": "Sebastien Chopin (@Atinux)"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/terrajs/imperium"
},
"keywords": [
"node acl",
"acl",
"auth",
"authorization",
"user acl",
"security",
"imperium"
],
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"ava": "0.25.0",
"codecov": "3.1.0",
"nyc": "13.0.1",
"rimraf": "2.6.2",
"standard": "12.0.1",
"std-mocks": "1.0.1"
}
}