-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "@aclify/aclify",
"version": "2.2.0",
"description": "Node Access Control List (ACL)",
"author": "Dimitri DO BAIRRO <dimitri.dobairro@dimsolution.com>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aclify/aclify.git"
},
"keywords": [
"acl",
"redis",
"mongodb",
"memory"
],
"bugs": {
"url": "https://github.com/aclify/aclify/issues"
},
"homepage": "https://github.com/aclify/aclify#readme",
"dependencies": {
"bluebird": "3.7.2",
"lodash": "4.17.20"
},
"devDependencies": {
"@types/bluebird": "3.5.32",
"@types/express": "4.17.8",
"@types/jest": "26.0.14",
"@types/lodash": "4.14.161",
"@types/node": "14.11.2",
"@types/redis": "2.8.27",
"jest": "26.4.2",
"mongodb": "3.6.2",
"node-mocks-http": "1.9.0",
"prettier": "2.1.2",
"redis": "3.0.2",
"ts-jest": "26.4.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "4.0.3"
},
"scripts": {
"clean": "rm -rf dist coverage jest_0",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project 'tsconfig.json'",
"lint:fix": "tslint --fix -t stylish --project 'tsconfig.json'",
"test": "docker-compose -f docker-compose-test.yml up --abort-on-container-exit",
"test:coverage": "jest --coverage",
"prepublish": "yarn build"
},
"peerDependencies": {
"express": "^4.16.4",
"mongodb": "^3.2.3",
"redis": "^2.8.0"
}
}