-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "use-input-hook",
"version": "1.0.1",
"description": "Stateful hook for input components",
"author": "siddharthmantri",
"license": "MIT",
"repository": "SiddharthMantri/use-input",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^2.1.0",
"@svgr/rollup": "^2.4.1",
"@types/react": "^16.3.13",
"cross-env": "^5.1.4",
"react": "^16.8.0",
"react-scripts-ts": "^3.1.0",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-url": "^1.4.0",
"typescript": "^2.8.3"
},
"files": [
"dist"
]
}