-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "@casbin/redis-watcher",
"version": "1.0.2",
"description": "Redis watcher for node-casbin",
"main": "lib/watcher.js",
"typings": "lib/watcher.d.ts",
"scripts": {
"prepack": "yarn build",
"postpack": "rimraf lib",
"prettier": "prettier --write **/*.{ts,js}",
"build": "rimraf lib && tsc -p tsconfig.json",
"lint": "tslint -p . -c tslint.json",
"test": "jest --forceExit"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.8",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/ioredis": "^4.14.3",
"@types/jest": "^24.0.11",
"@types/node": "^10.5.3",
"casbin": "^5.2.1",
"coveralls": "^3.0.2",
"jest": "^24.9.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rimraf": "^2.6.2",
"semantic-release": "^17.2.3",
"ts-jest": "^24.2.0",
"tslint": "^5.11.0",
"typescript": "^3.7.4"
},
"dependencies": {
"ioredis": "^4.11.1"
},
"files": [
"lib",
"examples"
],
"homepage": "http://casbin.org",
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/redis-watcher.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
}
}