forked from fawwaz/soya-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.75 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
{
"name": "soya-form",
"version": "0.0.16",
"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 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": {
"hoist-non-react-statics": "^2.5.0",
"lodash": "^4.17.10",
"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": "^3.0.0",
"husky": "^0.14.0",
"jest": "^22.1.1",
"lint-staged": "^7.1.3",
"marlint": "^6.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.7",
"react-test-renderer": "^16.0.0",
"react-text-mask": "^5.4.3",
"redux": "^4.0.0",
"rimraf": "^2.6.1",
"soya-next": "^0.5.10"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"soya-next": "^0.5.10"
},
"lint-staged": {
"*.js": [
"yarn lint:fix",
"git add"
]
},
"marlint": {
"envs": [
"browser",
"es6",
"jest",
"node"
],
"ignores": [
"**/coverage/**",
"**/lib/**",
"**/node_modules/**"
]
}
}