-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
66
67
{
"name": "newforms",
"description": "An isomorphic form-handling library for React",
"version": "0.13.2",
"author": "Jonny Buchanan <[email protected]>",
"keywords": [
"isomorphic",
"form-handling",
"forms",
"input",
"validation",
"conversion",
"coercion",
"react",
"react-component"
],
"main": "./lib/newforms.js",
"repository": {
"type": "git",
"url": "http://github.com/insin/newforms.git"
},
"dependencies": {
"Concur": "^0.3.0",
"envify": "^3.4.0",
"get-form-data": "^1.2.2",
"isomorph": "^0.3.0",
"validators": "^0.3.1"
},
"devDependencies": {
"browserify": "^9.0.7",
"browserify-shim": "^3.8.3",
"gulp": "^3.8.11",
"gulp-concat": "^2.4.3",
"gulp-flatten": "0.0.4",
"gulp-flatten-requires": "^1.0.0",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.10.0",
"gulp-plumber": "^1.0.0",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.2",
"jshint-stylish": "^1.0.0",
"qqunit": "^0.6.0",
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"vinyl-source-stream": "^1.0.0"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"scripts": {
"dist": "gulp browserify-js --production --release && gulp browserify-js --development --release",
"npm": "gulp npm",
"test": "gulp browserify-js && node tests/tests.js",
"watch": "gulp"
},
"browserify": {
"transform": [
"envify"
]
},
"browserify-shim": {
"react": "global:React"
}
}