forked from vazco/uniforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.27 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
{
"private": true,
"scripts": {
"build": "lerna exec -- babel --out-dir . src",
"clean": "rimraf coverage packages/*/*.js",
"coverage": "jest --coverage",
"coverage:report": "codecov",
"flow": "flow",
"flow-typed": "flow-typed install",
"install": "npm run build",
"lint": "eslint demo packages",
"lint:demo": "eslint demo",
"lint:packages": "eslint packages",
"postinstall": "lerna bootstrap",
"prereset": "npm run clean",
"pretest": "npm run lint && npm run flow",
"publish": "lerna publish",
"reset": "rimraf node_modules packages/*/node_modules",
"test": "jest"
},
"dependencies": {
"antd": "3.3.0",
"babel-cli": "6.26.0",
"babel-eslint": "8.2.2",
"babel-jest": "22.2.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"codecov": "3.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-vazco": "3.1.1",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-vazco": "1.0.0",
"flow-bin": "0.68.0",
"flow-typed": "2.4.0",
"graphql": "0.13.2",
"jest": "22.4.2",
"lerna": "^2.9.0",
"material-ui": "0.20.0",
"prettier": "1.11.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-tap-event-plugin": "3.0.2",
"react-test-renderer": "16.2.0",
"rimraf": "2.6.2",
"simpl-schema": "1.4.2"
},
"engines": {
"npm": ">=5.0.0"
},
"jest": {
"collectCoverageFrom": [
"packages/*/src/*.js"
],
"coverageReporters": [
"html",
"lcovonly",
"text-summary"
],
"moduleNameMapper": {
"^uniforms([^/]*)(.*)$": "<rootDir>/packages/uniforms$1/src$2",
"meteor/([^:]*):(.*)": "<rootDir>/packages/uniforms/__mocks__/meteor/$1_$2.js",
"meteor/([^:]*)": "<rootDir>/packages/uniforms/__mocks__/meteor/$1.js"
},
"setupFiles": [
"./scripts/setupEnzyme.js"
],
"testMatch": [
"**/__tests__/**/!(_)*.js"
]
}
}