forked from grommet/react-formify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.35 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.35 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
79
80
81
82
83
{
"name": "react-formify",
"version": "0.10.2",
"main": "index.js",
"module": "es6/index.js",
"jsnext:main": "es6/index.js",
"description": "An uncontrolled react Form component with validation capabilities.",
"authors": [
"Alan Souza",
"Bryan Jacquot",
"Chris Carlozzi",
"Eric Soderberg"
],
"homepage": "http://v2.grommet.io",
"bugs": "https://github.com/grommet/react-formify/issues",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/grommet/react-formify.git"
},
"scripts": {
"dist": "cross-env NODE_ENV=production grommet pack && babel ./src --ignore '__tests__' --out-dir ./dist && cross-env BABEL_ENV=es6 babel ./src --ignore '__tests__' --out-dir ./dist/es6",
"release-stable": "babel-node ./tools/release-stable",
"check": "cross-env NODE_ENV=test grommet check",
"test": "grommet check -t",
"test-update": "grommet check -t -- --updateSnapshot",
"test-watch": "grommet check -t -- --watchAll"
},
"peerDependencies": {
"react": ">= 15.3.0 < 16 || 16.x",
"react-dom": ">= 15.3.0 < 16 || 16.x"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.5.2",
"babel-eslint": "^8.0.0",
"babel-jest": "^20.0.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.24.1",
"camel-case": "^3.0.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"del": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-parallel": "^0.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^4.0.1",
"grommet": "1.8.3",
"grommet-cli": "^5.0.0",
"jest-cli": "^21.0.1",
"json-loader": "^0.5.4",
"pre-commit": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"simple-git": "^1.76.0",
"webpack": "^3.4.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.{js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|node_modules)[/\\\\]"
]
},
"pre-commit": [
"check"
]
}