-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 1.99 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": "bem-react-components",
"version": "0.0.2",
"description": "BEM React Components",
"repository": {
"type": "git",
"url": "git://github.com/bem/bem-react-components.git"
},
"keywords": [
"bem",
"react",
"components"
],
"license": "MPL-2.0",
"dependencies": {
"bem-react-core": "0.4.2",
"prop-types": "15.5.7",
"throttle-debounce": "^1.0.1",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-bem-import": "^1.4.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bem-tools-core": "0.0.3",
"bem-tools-create": "^2.3.0",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"glob": "^7.1.1",
"husky": "^0.13.3",
"jest": "^19.0.2",
"react-test-renderer": "^15.5.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"sinon": "^2.2.0",
"stream-to-array": "^2.3.0",
"style-loader": "^0.17.0",
"vow": "^0.4.15",
"vow-fs": "^0.3.6",
"webpack": "^2.5.0",
"webpack-bem-loader": "0.6.0",
"webpack-dev-server": "^2.4.5"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"blocks/**/*.js",
"!blocks/**/*.tests/*.js",
"!**/node_modules/**"
]
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"precommit": "npm run lint",
"prepush": "npm test",
"build": "webpack --config=webpack.config.js",
"start": "webpack-dev-server --port=3000 --progress --watch --config=webpack.config.js"
}
}