-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.88 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
{
"name": "react-container-helper",
"description": "Help to generate react container component easily and functionally",
"version": "0.3.3",
"keywords": [
"react",
"react container",
"react-container",
"react container component",
"container component"
],
"contributor": [
{
"name": "Lee",
"email": "jessy1092@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jessy1092/react-container-helper"
},
"bugs": {
"url": "https://github.com/jessy1092/react-container-helper/issues"
},
"license": "MIT",
"scripts": {
"start": "gulp dev",
"test": "npm run lint && npm run jest",
"prepublish": "gulp transpile",
"lint": "eslint .",
"jest": "jest --coverage"
},
"engines": {
"node": ">=4"
},
"main": "lib/index.js",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"coveralls": "^2.13.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.4.0",
"gulp": "^3.9.1",
"gulp-babel": "7.0.0",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"jest": {
"setupFiles": [
"<rootDir>/__test__/__conf__/polyfill.js",
"<rootDir>/__test__/__conf__/setup.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/__test__/",
"<rootDir>/node_modules/"
],
"snapshotSerializers": ["enzyme-to-json/serializer"]
}
}