-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-awesome-form",
"version": "1.0.6",
"description": "Awesome React Hooks, which allow you to control user entering",
"author": "sldo",
"license": "Apache-2.0",
"repository": "https://github.com/SlDo/react-awesome-form",
"main": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.7",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.13.1",
"rollup": "^1.29.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^26.1.3",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"keywords": [
"react",
"react hooks",
"typescript",
"npm"
],
"dependencies": {
"prop-types": "^15.7.2"
}
}