forked from rikhoffbauer/react-abac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
67
{
"name": "react-abac",
"version": "0.0.7",
"description": "",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jest.config.json",
"build": "rollup -c",
"prestart": "sh link-to-example.sh",
"start": "rollup -c -w",
"prepack": "npm run build",
"prepare": "npm run format && npm run build",
"format": "prettier --write '**/*.json' '**/*.md' '**/*.ts' '**/*.tsx' '**/*.yaml' '**/*.yml'"
},
"files": [
"dist"
],
"keywords": [
"abac",
"rbac",
"react",
"typescript"
],
"bugs": {
"url": "https://github.com/facebook/react/issues"
},
"author": "Rik Hoffbauer",
"repository": {
"type": "git",
"url": "git+https://github.com/jewetnitg/react-abac.git"
},
"license": "ISC",
"peerDependencies": {
"react": "^16.8.1"
},
"devDependencies": {
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.0",
"@types/react": "^16.8.7",
"@types/react-dom": "^16.8.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rollup": "^1.7.3",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-url": "^2.2.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"dependencies": {}
}