This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "react-form-helper-sl",
"version": "0.0.5",
"description": "Make creating react forms easier. It handles state, validation and async submission",
"main": "./dist/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "eslint .",
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack",
"test": "",
"clean": "rimraf dist coverage",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tafkanator/react-form-helper.git"
},
"keywords": [
"react",
"react-component",
"react-form",
"form"
],
"author": "Taavi Sangel",
"license": "ISC",
"bugs": {
"url": "https://github.com/tafkanator/react-form-helper/issues"
},
"homepage": "https://github.com/tafkanator/react-form-helper#readme",
"dependencies": {
"immutability-helper": "^2.1.2",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"peerDependencies": {
"react": "^15.4.2",
"immutability-helper": "^2.1.2"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.17.1",
"eslint-config-sl": "^3.0.0",
"jest": "^19.0.2",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.6.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}