-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.11 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
{
"name": "redux-form-validations",
"version": "0.1.5",
"description": "Validation utilities for redux-form v6",
"author": "PolicyGenius",
"license": "MIT",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/policygenius/redux-form-validations.git"
},
"dependencies": {
"date-fns": "^1.28.5",
"invariant": "^2.2.2",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify-es2015": "^0.0.3",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-policygenius": "^0.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"karma": "^1.7.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mockdate": "^2.0.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"jest": {
"modulePaths": [
"./src"
],
"testPathIgnorePatterns": [
"./node_modules"
],
"testRegex": "(\\.spec\\.js)",
"setupTestFrameworkScriptFile": "./jest.setup.js",
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"scripts": {
"clean": "rm -rf build/*",
"build": "babel src --ignore spec.js --out-dir build && cp src/index.d.ts build",
"lint": "eslint ./src --ext .js",
"lint:fix": "eslint --fix ./src --ext .js",
"prepublish": "yarn run clean && yarn run build",
"test": "yarn run lint && jest",
"test:unit": "jest",
"test:debug": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
}
}