forked from fawwaz/soya-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.57 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.57 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "soya-form",
"version": "0.0.7",
"description": "React form library for soya",
"main": "lib/index.js",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"clean": "rimraf lib",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage && cat ./coverage/lcov.info | coveralls",
"lint": "marlint",
"lint:fix": "yarn run lint -- --fix",
"precommit": "lint-staged",
"prepublish": "yarn run clean && yarn run build",
"test": "jest",
"watch": "yarn run build -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/traveloka/soya-form.git"
},
"keywords": [
"react",
"soya",
"form",
"redux"
],
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.13.1",
"husky": "^0.14.0",
"jest": "^21.0.0",
"lint-staged": "^4.0.0",
"marlint": "^6.2.1",
"react": "^15.6.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "^15.6.1",
"react-redux": "^5.0.5",
"redux": "^3.7.0",
"soya-next": ">=0.0.5"
},
"lint-staged": {
"*.js": [
"lint:fix",
"git add"
]
},
"marlint": {
"envs": [
"browser",
"es6",
"jest",
"node"
],
"ignores": [
"**/coverage/**",
"**/lib/**",
"**/node_modules/**"
]
}
}