-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"scripts": {
"_buildp": "node tools/build_parser.js",
"_buildt": "tsc",
"_unit": "mocha --opts \"./mocha.opts\" src/**/*.spec.ts",
"_integration": "mocha --opts \"./mocha.opts\" --exclude \"test/_.spec.ts\" test/index.ts ",
"dev": "ts-node test",
"unit": "npm run -s _unit -- --watch",
"integration": "npm run -s _integration -- --watch",
"buildt": "tsc --watch",
"buildp": "nodemon tools/build_parser.js",
"build": "npm run -s _buildt && npm run -s _buildp",
"test": "npm run -s _unit && npm run -s _integration",
"start": "npm run -s _build && node example.app.js"
},
"name": "facl",
"version": "0.2.1",
"engines": {
"node": ">= 8.0.0"
},
"files": [
"dist/",
"example.app.js",
"LICENSE",
"Readme.md"
],
"description": "This is an access control language (Firestore inspired DSL) for securing backend REST api's written in node.js.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/somombo/facl.git"
},
"keywords": [
"firestore",
"acl",
"DSL",
"express",
"plugin"
],
"author": "Somo S. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/somombo/facl/issues"
},
"homepage": "https://github.com/somombo/facl#readme",
"dependencies": {
"express": "^4.16.4",
"path-to-regexp": "^2.4.0",
"pegjs": "^0.10.0",
"request": "^2.88.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.6",
"@types/express": "^4.16.0",
"@types/http-proxy-middleware": "^0.17.5",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^10.12.0",
"@types/request": "^2.47.1",
"@types/supertest": "^2.0.6",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cors": "^2.8.4",
"errorhandler": "^1.5.0",
"http-proxy-middleware": "^0.18.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"nodemon": "^1.18.4",
"nps": "^5.9.3",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
}
}