-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "@tselect/access-control",
"description": "Simple, flexible and reliable access control for NodeJS and Typescript.",
"version": "1.0.8",
"author": "Sylvain Estevez",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tselect-npm/access-control.git"
},
"bugs": {
"url": "https://github.com/tselect-npm/access-control/issues"
},
"homepage": "https://github.com/tselect-npm/access-control#readme",
"scripts": {
"test": "mocha -r ts-node/register -r 'test/setup.ts' --recursive 'test/**/*.test.ts'",
"cov": "nyc npm run test",
"lint": "tslint --project ./",
"fix": "tslint --fix --project ./",
"compile": "tsc",
"build": "rm -rf dist && mkdir dist && tsc --noEmit false",
"prepare": "tsc",
"prepublishOnly": "npm run lint && npm run cov && npm run build"
},
"keywords": [
"tselect",
"acl",
"abac",
"rbac",
"access",
"security",
"typescript"
],
"dependencies": {
"@bluejay/utils": "4.0.0",
"diff": "4.0.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"stringify-object": "^3.3.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@tselect/status-code": "^1.0.2",
"@types/body-parser": "^1.19.4",
"@types/chai": "^4.3.9",
"@types/chai-subset": "^1.3.4",
"@types/express": "4.17.8",
"@types/get-port": "^3.2.0",
"@types/lodash": "^4.14.200",
"@types/mocha": "5.2.3",
"@types/moment": "^2.13.0",
"@types/node": "12.7.0",
"@types/stringify-object": "^3.3.1",
"@types/supertest": "^2.0.15",
"@types/uuid": "^3.4.12",
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"chai-subset": "^1.6.0",
"express": "^4.18.2",
"get-port": "^3.2.0",
"mocha": "^10.2.0",
"nyc": "15.1.0",
"supertest": "4.0.2",
"ts-node": "^9.1.1",
"tslint": "6.1.3",
"typescript": "^4.9.5"
}
}