-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "form-logic",
"version": "1.0.3",
"description": "Form logic made simple",
"main": "build/index.js",
"keywords": "form,react,logic",
"repository": {
"url": "https://github.com/js-and-chill/form-logic.git",
"type": "git"
},
"author": "yachaka <[email protected]>",
"license": "MIT",
"files": [
"build/"
],
"scripts": {
"prepublish": "yarn build",
"watch": "babel --watch src --out-dir build/",
"build": "babel src/ --out-dir build/",
"flow": "flow",
"test": "mocha --require babel-register ./src/**/*.test.js"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"flow-bin": "^0.38.0",
"gulp": "^3.9.1",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"sinon": "^1.17.7"
},
"dependencies": {
"lodash.merge": "^4.6.0",
"react": "^15.4.2"
}
}