This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "react-hooks-helper",
"version": "1.6.0",
"description": "A custom React Hooks library that gives you custom hooks for your code.",
"main": "dist/react-hooks-helper.js",
"umd:main": "dist/react-hooks-helper.umd.js",
"module": "dist/react-hooks-helper.m.js",
"source": "src/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/revelcw/react-hooks-helper.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src",
"test": "jest --verbose --coverage --silent",
"test:watch": "jest --watch --runInBand --silent",
"prebuild": "npm run lint && npm t && rimraf dist",
"build": "microbundle -o dist/ --sourcemap false --target web",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false"
},
"keywords": [
"react-hooks",
"hooks",
"react",
"utils",
"lib",
"form",
"step",
"wizard"
],
"author": "revelcw",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.10.0",
"eslint-config-amex": "^9.0.0",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"microbundle": "^0.9.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-testing-library": "^5.5.3",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "^16.8.0"
}
}