forked from bem/bem-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
{
"name": "bem-react-core",
"version": "0.1.3",
"description": "BEM React Core",
"repository": {
"url": "git://github.com/bem/bem-react-core.git",
"type": "git"
},
"keywords": [
"bem",
"react",
"core"
],
"main": "dist/index.js",
"license": "MPL-2.0",
"dependencies": {
"b_": "^1.3.3",
"inherit": "^2.2.3",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.2",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-bem-import": "^1.1.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.23.1",
"enzyme": "^2.7.0",
"eslint": "^3.13.1",
"eslint-plugin-jest": "^1.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-bem-loader": "^0.0.3",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"build": "webpack --config=tests/webpack.config.js",
"start": "webpack-dev-server --port=3000 --hot --inline --progress --config=tests/webpack.config.js --content-base=tests/",
"dist": "babel ./index.js -d dist && babel ./lib -d dist/lib",
"lint": "eslint .",
"test": "jest"
},
"jest": {
"testRegex": "/__tests__/.*(spec)\\.jsx?$"
}
}