forked from casbin/node-casbin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
64
65
66
{
"name": "casbin",
"version": "3.0.1",
"description": "An authorization library that supports access control models like ACL, RBAC, ABAC in Node.JS",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepack": "yarn run lint && yarn run test && yarn build",
"postpack": "rimraf lib",
"prettier": "prettier --write **/*.{ts,js}",
"build": "rimraf lib && tsc -p tsconfig.release.json",
"lint": "tslint -p . -c tslint.json",
"test": "jest"
},
"devDependencies": {
"@types/ip": "^0.0.31",
"@types/jest": "^24.0.11",
"@types/jscodeshift": "^0.6.0",
"@types/lodash": "^4.14.113",
"@types/node": "^10.5.3",
"coveralls": "^3.0.2",
"husky": "^2.3.0",
"jest": "^24.3.1",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"tslint": "^5.11.0",
"typescript": "^3.4.5"
},
"dependencies": {
"expression-eval": "^2.0.0",
"ip": "^1.1.5",
"jscodeshift": "^0.6.4",
"lodash": "^4.17.10"
},
"files": [
"lib",
"examples"
],
"homepage": "http://casbin.org",
"repository": {
"type": "git",
"url": "https://github.com/casbin/node-casbin.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
},
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
}
}