-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "seneca-allow",
"version": "0.0.1",
"description": "Seneca plugin for user and group permissions.",
"main": "allow.js",
"scripts": {
"test": "lab -P test -t 80 -I URL,URLSearchParams",
"prettier": "prettier --write --no-semi --single-quote *.js lib/*.js test/*.js",
"coveralls": "lab -s -P test -r lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voxgig/seneca-allow.git"
},
"author": "Richard Rodger (richardrodger.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/voxgig/seneca-allow/issues"
},
"homepage": "https://github.com/voxgig/seneca-allow#readme",
"files": [
"LICENSE",
"README.md",
"allow.js",
"lib/errors.js",
"lib/store.js"
],
"engines": {
"node": ">=6"
},
"dependencies": {
"lodash": "4.17",
"optioner": "1.1",
"patrun": "1.0"
},
"devDependencies": {
"code": "4",
"coveralls": "3",
"joi": "12",
"lab": "14",
"prettier": "1",
"seneca": "github:senecajs/seneca",
"seneca-entity": "2",
"seneca-plugin-validator": "0"
}
}