-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 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
41
{
"name": "@slynova/fence",
"version": "1.0.6",
"description": "Flexible and Fluent way to manage ACL in Node.js.",
"keywords": [
"acl",
"security",
"ability",
"policy"
],
"author": "Romain Lanz <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"prepublish": "npm run test",
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"test": "npm run lint && npm run build && node tests/test.js",
"test:coverage": "npm run lint && npm run build && ./node_modules/.bin/istanbul cover -x tests/test.js tests/test.js && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Slynova-Org/fence"
},
"bugs": {
"url": "https://github.com/Slynova-Org/fence/issues"
},
"devDependencies": {
"@slynova/tslint-config": "^1.0.3",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"japa": "^2.0.10",
"require-all": "^3.0.0",
"tslint": "^5.10.0",
"typescript": "^3.5.2"
},
"dependencies": {
"node-exceptions": "^4.0.1"
}
}