-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.31 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
78
{
"name": "react-uncontrolled-form",
"version": "2.3.0",
"main": "dist/react-uncontrolled-form.js",
"repository": {
"type": "git",
"url": "https://github.com/ericvaladas/react-uncontrolled-form.git"
},
"keywords": [
"react",
"forms",
"form",
"validation",
"uncontrolled",
"field"
],
"scripts": {
"clean": "rm -rf dist",
"pre-build": "npm run lint && npm run test",
"build-dev": "BABEL_ENV=dev rollup -c -i src/index.js -o dist/react-uncontrolled-form.js",
"build-prod": "NODE_ENV=production BABEL_ENV=production rollup -c -i src/index.js -o dist/react-uncontrolled-form.min.js",
"build": "npm run pre-build && npm run build-dev && npm run build-prod",
"prepare": "npm run clean && npm run build",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha --require jsdom-global/register test/unit",
"test-coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"author": "Eric Valadas <ericvaladas@me.com> (https://github.com/ericvaladas)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericvaladas/react-uncontrolled-form/issues"
},
"homepage": "https://github.com/ericvaladas/react-uncontrolled-form",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"jsdom": "^15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0"
},
"files": [
"dist"
],
"dependencies": {}
}