-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
{
"name": "@freenow/uniform",
"version": "1.0.0",
"description": "Component for creating dynamic forms",
"main": "lib/index.js",
"files": [
"lib",
"*.js.flow"
],
"scripts": {
"build": "rm -rf lib && babel src -d lib && npm run build:types",
"build:types": "flow-copy-source src lib",
"test": "npm run test:lint && npm run test:type && npm run test:unit",
"test:lint": "eslint --fix -c ./.eslintrc.js ./src",
"test:type": "flow",
"test:unit": "NODE_ENV=test jest --coverage --verbose",
"publish": "semantic-release --no-ci"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/freenowtech/uniform.git"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 5.0.0"
},
"author": "InfinityTeam",
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run test"
}
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/github": "^5.4.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.95.1",
"flow-copy-source": "^2.0.3",
"husky": "^1.3.1",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react-test-renderer": "^16.8.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-release": "^17.2.3"
},
"dependencies": {
"formik": "^1.5.1",
"yup": "^0.27.0"
}
}