forked from Bynder/react-formulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.01 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
{
"name": "@bynder/react-formulation",
"author": "Kim Vermeer",
"version": "0.2.5",
"description": "Simple form validation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bynder/react-formulation.git"
},
"bugs": {
"url": "https://github.com/Bynder/react-formulation/issues"
},
"homepage": "https://github.com/Bynder/react-formulation",
"keywords": [
"Form",
"Validation",
"Validate",
"Validator",
"React",
"Regex",
"Component",
"High order component",
"HOC",
"Translations",
"Schema"
],
"main": "lib/react-formulation.js",
"dependencies": {
"autobind-decorator": "^1.4.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.45.0",
"webpack": "^2.5.0"
},
"scripts": {
"start": "open docs/index.html && webpack --config webpack.config.demo.js --watch",
"build": "webpack && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"prepublish": "npm run build"
}
}