-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "react-validating-form",
"description": "A validating form for use with React",
"author": "Adam Nalisnick <theadam4257@gmail.com>",
"version": "0.1.1",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/theadam/react-validating-form.git"
},
"bugs": "https://github.com/theadam/react-validating-form/issues",
"keywords": [
"validation",
"react",
"form"
],
"dependencies": {
"lodash": "^2.4.1",
"react": "^0.11.1",
"react-bootstrap": "^0.11.1"
},
"devDependencies": {
"browserify": "^5.11.0",
"node-schema": "^2.0.0",
"reactify": "^0.14.0",
"string-validator": "^1.0.5",
"uglify-js": "^2.4.15",
"watchify": "^1.0.2"
},
"scripts": {
"build": "node_modules/.bin/browserify --extension=.jsx -t reactify example/src/main.jsx | node_modules/.bin/uglifyjs > example/index.js",
"watchify": "node_modules/.bin/watchify --debug --extension=.jsx -v -t reactify example/src/main.jsx -o example/index.js"
}
}