-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·49 lines (49 loc) · 1.27 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
{
"name": "refilterable",
"version": "1.0.0-alpha.10",
"main": "dist/refilterable.cjs.js",
"module": "dist/refilterable.esm.js",
"browser": "dist/refilterable.umd.js",
"types": "dist/index.d.ts",
"dependencies": {
"invariant": "^2.2.4"
},
"peerDependencies": {
"history": "^4.7.2",
"react": "^16.8.0"
},
"devDependencies": {
"@testing-library/react": "^8.0.1",
"@types/history": "^4.7.2",
"@types/invariant": "^2.2.29",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/url-search-params": "^1.1.0",
"history": "^4.9.0",
"jest": "^24.8.0",
"parcel": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.5.1",
"react-test-renderer": "^16.8.6",
"rollup": "^1.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.21.1",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest",
"coverage": "jest --coverage",
"examples": "npm run build && parcel examples/index.html"
},
"files": [
"dist"
]
}