-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@epages/react-components",
"description": "A zoo of useful React components.",
"version": "0.11.1",
"scripts": {
"start": "NODE_ENV=development node ./webpack.devserver.js",
"pretest": "npm run lint",
"test": "jest",
"posttest": "npm run build",
"build": "sh -c \"rm -rf build/ && NODE_ENV=production babel src/ --out-dir build/\"",
"lint": "import-sort -l {src,test,public}/**/*.{js,jsx} && eslint --ext js,jsx *.js src/ test/ public/",
"fixlint": "import-sort --write {src,test,public}/**/*.{js,jsx}; eslint --ext js,jsx *.js src/ test/ public/ --fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ePages-de/react-components.git"
},
"bugs": {
"url": "https://github.com/ePages-de/react-components/issues"
},
"homepage": "https://github.com/ePages-de/react-components#readme",
"license": "MIT",
"main": "build/index.js",
"peerDependencies": {
"color": "^3.1.2",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"immutable": "^3.8.2"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-transform-modules-umd": "7.2.0",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@testing-library/react": "9.4.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"bluebird": "3.7.1",
"color": "3.1.2",
"create-react-class": "15.6.3",
"eslint": "6.6.0",
"eslint-config-standard": "14.1.0",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-standard": "4.0.1",
"file-loader": "4.2.0",
"hoist-non-react-statics": "3.3.0",
"immutable": "3.8.2",
"import-sort-cli": "6.0.0",
"import-sort-parser-babylon": "6.0.0",
"import-sort-style-choffmeister": "1.0.0",
"jest": "24.9.0",
"json-loader": "0.5.7",
"prop-types": "15.7.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-immutable-proptypes": "2.1.0",
"react-test-renderer": "16.11.0",
"react-testutils-additions": "16.0.2",
"sinon": "7.5.0",
"unexpected": "11.8.0",
"unexpected-immutable": "0.5.0",
"unexpected-react": "5.0.1",
"unexpected-sinon": "10.11.2",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
},
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "choffmeister"
}
},
"jest": {
"setupFiles": [
"./test/setup.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/test/"
],
"cacheDirectory": "<rootDir>/.cache/jest"
},
"dependencies": {
"immutablediff": "0.4.4"
}
}