-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "react-valida-hook",
"version": "0.0.11",
"description": "Form validation Hooks for react",
"repository": "https://github.com/highercomve/react-valida-hook",
"author": "Sergio Marin",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"dev": "parcel example/index.html",
"build": "babel src -d lib",
"test": "jest",
"prepublishOnly": "npm run test && npm run build"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/config/jest.transform.js"
},
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js",
"<rootDir>/config/jest.config.js"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.0.0",
"dayjs": "^1.8.0",
"dompurify": "^2.0.7",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"inspector": "^0.5.0",
"jest": "^24.0.0",
"jest-environment-enzyme": "^7.0.1",
"jest-enzyme": "^7.0.1",
"parcel-bundler": "^1.11.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"react": "^16.8.0",
"valida-js": "^0.0.5"
}
}