-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-form-getter",
"version": "1.0.0-semantically-released",
"description": "Get all of your React form data in one function",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"start": "npm run test",
"watch:test": "npm t -- --watch",
"test": "mocha src/index.test.js --compilers js:babel-register --require ./src/test_helper.js",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"setup": "npm install",
"setup:fem": "git checkout FEM/10.1-docs && npm install && git checkout FEM/00-scratch",
"setup:egghead": "npm run setup && rimraf dist coverage && git checkout lesson/02-setting-up-github",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"release": "semantic-release pre && npm publish && semantic-release post",
"validate": "npm-run-all --parallel build"
},
"repository": {
"type": "git",
"url": "https://github.com/lmordell/React-Form-Getter.git"
},
"keywords": [
"React",
"form"
],
"files": [
"dist",
"README.md"
],
"author": "Lee Mordell <[email protected]> (http://www.leemordell.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmordell/React-Form-Getter/issues"
},
"homepage": "https://github.com/lmordell/React-Form-Getter#readme",
"dependencies": {
},
"devDependencies": {
"babel-cli": "6.11.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "6.13.0",
"babel-register": "6.11.6",
"chai": "3.5.0",
"codecov": "1.0.1",
"commitizen": "2.8.5",
"cz-conventional-changelog": "1.1.6",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"ghooks": "1.3.2",
"jsdom": "^9.11.0",
"mocha": "3.0.1",
"npm-run-all": "2.3.0",
"react-addons-test-utils": "^15.4.2",
"rimraf": "2.5.4",
"semantic-release": "^4.2.1",
"webpack": "1.13.1"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"react",
"es2015",
"stage-2"
]
}
}