-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
54 lines (54 loc) · 1.72 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
{
"name": "casbin.js",
"version": "0.1.3",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/casbin/casbin.js.git",
"author": "kingiw <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "rimraf lib && tsc",
"test": "jest --config jestconfig.json --unhandled-rejections=strict",
"prod": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"clean": "rimraf lib",
"prepack": "run-s build",
"postpack": "run-s clean",
"release": "npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog semantic-release"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@types/express": "4.17.0",
"@types/jest": "^26.0.23",
"@types/js-cookie": "^2.2.6",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"express": "4.17.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "4.2.4",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"axios": "^0.21.1",
"babel-loader": ">=8.1.0",
"casbin-core": "^0.0.0-beta.2",
"js-cookie": "^2.2.1"
}
}