-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"name": "react-adaptive-hooks",
"version": "0.1.0",
"description": "Give users a great experience best suited to their device and network constraints",
"repository": "https://github.com/GoogleChromeLabs/react-adaptive-hooks",
"author": "Google Chrome",
"license": "Apache-2.0",
"private": false,
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"source": "index.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepare": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@testing-library/react-hooks": "^1.1.0",
"babel-polyfill": "^6.26.0",
"jest": "^24.8.0",
"microbundle": "0.11.0",
"react": "17.0.1",
"react-test-renderer": "17.0.1"
},
"keywords": [
"react-hooks",
"hooks",
"react",
"performance"
]
}