-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.41 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
{
"name": "react-anthooks",
"version": "1.0.7",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && rimraf ./example/src/dist && rollup -c",
"start": " cd ./example && npm start ",
"watch": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"hooks",
"react",
"antd"
],
"author": "Nick Jiang",
"license": "ISC",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickJiangDev/react-antchooks.git"
},
"bugs": {
"url": "https://github.com/NickJiangDev/react-antchooks/issues"
},
"homepage": "https://github.com/NickJiangDev/react-antchooks#readme",
"dependencies": {},
"peerDependencies": {
"react": "^16.8.3"
},
"devDependencies": {
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"immutable": "^4.0.0-rc.12",
"react-dom": "^16.8.3",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-cpy": "^1.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-url": "^2.2.0",
"typescript": "^3.3.1"
}
}