-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.35 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": "@casbin/etcd-watcher",
"version": "1.0.0",
"description": "Etcd 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/git": "^9.0.0",
"@types/bluebird": "^3.5.29",
"@types/jest": "^24.0.11",
"@types/node": "^10.5.3",
"casbin": "^3.0.8",
"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.2",
"ts-jest": "^24.2.0",
"tslint": "^5.11.0",
"typescript": "^4.0.5"
},
"dependencies": {
"etcd3": "^1.0.2"
},
"files": [
"lib",
"examples"
],
"homepage": "http://casbin.org",
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/etcd-watcher.git"
},
"publishConfig": {
"access": "public"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
}
}