-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "koa-2-acl",
"version": "2.0.1",
"description": "a koa 2 access control lists(koa-acl) project",
"main": "./lib",
"scripts": {
"test": "npm run lint && ./node_modules/.bin/_mocha ./tests/**/**.spec.js",
"lint": "eslint .js lib"
},
"keywords": [
"koa",
"acl"
],
"author": "Jeffery Liang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JefferyLiang/koa-2-acl"
},
"dependencies": {
"js-yaml": "^3.12.0",
"koa-unless": "^1.0.7",
"lodash": "^4.17.11",
"object-path": "^0.11.4"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-spies": "^0.7.1",
"codacy-coverage": "^2.1.1",
"coveralls": "^3.0.2",
"eslint": "4",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"node-mocks-http": "^1.7.0"
},
"bin": {
"eslint": "node_modules/.bin/eslint"
}
}