-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 973 Bytes
/
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
{
"name": "stockade",
"version": "1.1.0",
"engines": {
"node": ">=6.9.0",
"npm": ">=3.10.8"
},
"description": "A permissions helper for Node apps. Provides both a global and namespaced instances used to track registered permission providers and cleanly make queries against them.",
"main": "src/main.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha --recursive",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your code looks good.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fpm-git/stockade.git"
},
"bugs": {
"url": "https://github.com/fpm-git/stockade/issues"
},
"homepage": "https://github.com/fpm-git/stockade#readme",
"author": "Floatplane Media Inc.",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.29.0",
"mocha": "^6.2.3"
}
}