-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "react-form-data",
"version": "0.2.4",
"description": "React mixin to get form data in nice javascript object format.",
"main": "index.js",
"scripts": {
"prepublishOnly": "coffee -o dist -cb lib",
"bundleReact": "browserify -r react/addons > generated/react-browserified.js",
"testWatch": "watchify -x react/addons -t coffee-reactify test/FormDataMixinTest.cjsx -o generated/testsbundle.js -v",
"runtests": "touch generated/testsbundle.js && karma start",
"dev": "npm run testWatch & npm run runtests",
"pretest": "npm run bundleReact && browserify -x react/addons -t coffee-reactify test/FormDataMixinTest.cjsx -o generated/testsbundle.js",
"test": "karma start --single-run",
"predemo": "npm i",
"demo": "coffee demo/server.coffee"
},
"keywords": [
"react",
"react-component",
"react-mixin",
"form-data"
],
"repository": {
"type": "git",
"url": "https://github.com/TheLudd/react-form-data"
},
"homepage": "https://github.com/TheLudd/react-form-data",
"files": [
"README.md",
"dist/",
"lib/",
"index.js"
],
"author": "Ludwig Magnusson",
"license": "ISC",
"peerDependencies": {
"react": ">=0.11.1"
},
"devDependencies": {
"browserify": "^5.11.2",
"coffee-reactify": "^0.5.2",
"coffee-script": "^1.8.0",
"karma": "^0.12.23",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "0.0.4",
"karma-mocha": "^0.1.9",
"react": "~0.12.0",
"should": "^4.0.4",
"watchify": "^1.0.2"
}
}