-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) 路 2.9 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) 路 2.9 KB
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
68
69
70
71
72
73
74
75
76
77
{
"name": "formv",
"version": "5.4.0",
"description": "React form validation using the validation native to all recent browsers. Also includes support for handling API validation messages, success messages, memoized and nested form state, and super easy styling.",
"main": "dist/formv.cjs.js",
"module": "dist/formv.esm.js",
"repository": "git@github.com:Wildhoney/Formv.git",
"author": "Adam Timberlake <adam.timberlake@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c && webpack --config example/webpack.config.js",
"lint": "eslint '**/**.js'",
"test": "yarn lint && yarn build && ava --verbose",
"spec": "yarn build && ava",
"coverage": "nyc ava './src/**/*.js' && nyc report --reporter=text-lcov | coveralls",
"format": "NODE_ENV=production prettier --write '**/**.{js,html,md}'",
"start": "node --experimental-modules example/server.mjs",
"dev": "concurrently 'webpack --config example/webpack.config.js --watch' 'node --experimental-modules example/server.mjs'"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.4",
"@babel/runtime": "^7.10.4",
"ava": "^3.9.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browser-env": "^3.3.0",
"concurrently": "^5.2.0",
"core-js": "^3.6.5",
"coveralls": "^3.1.0",
"delay": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"execa": "^4.0.2",
"express": "^4.17.1",
"get-port": "^5.1.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"puppeteer": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-use": "^15.3.2",
"rollup": "^2.18.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"sinon": "^9.0.2",
"starwars": "^1.0.1",
"styled-components": "^5.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"lodash": "^4.17.15",
"ramda": "^0.27.0",
"react-tracked": "^1.4.1"
}
}