This repository was archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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
{
"name": "enquiry",
"version": "0.2.0",
"description": "A render-agnostic react form framework",
"main": "index.js",
"scripts": {
"test": "for i in `git ls-files | grep _test.js`; do babel-node $i; done;",
"tidy": "git ls-files | grep -E \".jsx?$\" | xargs esformatter -i",
"examples": "cd docsite && ./scripts/source-gen.js",
"build": "cd docsite && ./scripts/source-gen.js && webpack",
"watch": "cd docsite && ./scripts/source-gen.js && webpack --watch",
"dev": "cd docsite && ./scripts/source-gen.js && webpack-dev-server --host $IP --port $PORT --devtool eval --progress --colors --hot --content-base build",
"docs": "sh build-docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloud9ide/react-enquiry.git"
},
"keywords": [
"react",
"form",
"fieldset",
"input",
"component",
"validation"
],
"author": "Matthijs van Henten <matthijs@c9.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloud9ide/react-enquiry/issues"
},
"homepage": "https://github.com/cloud9ide/react-enquiry#readme",
"devDependencies": {
"async": "^2.1.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-node6": "^11.0.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"copy-webpack-plugin": "^3.0.1",
"enzyme": "^2.4.1",
"esformatter": "^0.9.6",
"js-beautify": "^1.6.4",
"jsdom": "^9.8.3",
"lodash": "^4.17.2",
"prop-types": "^15.6.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-highlight": "^0.9.0",
"serve": "^1.4.0",
"sinon": "^1.17.6",
"static-site-generator-webpack-plugin": "^3.0.0",
"tape": "^4.6.2",
"watchy": "^0.6.6",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}