forked from psaia/react-serial-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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
{
"name": "react-serial-forms",
"version": "1.1.6-beta1",
"description": "A high performance form library built specifically for React using persistent immutable data.",
"main": "./lib/index.js",
"files": [
"*.md",
"lib"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require chai --growl --compilers js:babel-register tests/setup.js tests/*",
"prepublish": "gulp"
},
"browserify-shim": {
"react": "global:React"
},
"repository": {
"type": "git",
"url": "https://github.com/LevInteractive/react-serial-forms.git"
},
"keywords": [
"immutable.js",
"react",
"form"
],
"author": "Pete Saia <pete@lev-interactive.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/LevInteractive/react-serial-forms/issues"
},
"homepage": "https://github.com/LevInteractive/react-serial-forms",
"dependencies": {
"lodash": "^4.6.1",
"qs": "^3.0.0",
"immutable": "^3.7.3"
},
"peerDependencies": {
"react": ">=0.14.7",
"react-dom": ">=0.14.7"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^10.2.1",
"browserify-shim": "^3.8.7",
"chai": "^2.3.0",
"del": "^1.2.0",
"gulp": "^3.8.11",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.0.1",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"react-addons-test-utils": "^0.14.7",
"testdom": "^2.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}