-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 KB
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
67
{
"name": "react-authorize",
"version": "0.1.4",
"description": "Determine the render of related React Components by comparing existing permissions with access permissions.",
"author": "Shen Chang",
"homepage": "https://github.com/Sam618/react-authorize",
"keywords": [
"react",
"authorize"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sam618/react-authorize.git"
},
"bugs": {
"url": "https://github.com/Sam618/react-authorize/issues"
},
"main": "es/index.js",
"scripts": {
"clean": "rimraf es",
"test": "jest",
"codecov": "codecov",
"build:demo": "webpack",
"build:es": "npm run clean && tsc",
"start:demo": "webpack-dev-server --hot --historyApiFallback",
"start:es": "npm run clean && tsc -w -sourcemap --outDir es"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
},
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@types/node": "^10.12.21",
"@types/react": "^16.8.1",
"babel": "^6.23.0",
"babel-loader": "^8.0.5",
"codecov": "^3.2.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"typescript": "^3.3.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}