forked from bem/bem-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "bem-react-core",
"version": "0.4.2",
"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": {
"easy-bem-naming": "^1.0.2",
"inherit": "2.2.6",
"prop-types": "15.5.8",
"react": "15.5.4",
"react-dom": "15.5.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-bem-import": "^1.4.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"jest": "^19.0.2",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4"
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"dist": "babel ./src -d dist",
"publish": "npm run dist",
"precommit": "npm run lint",
"prepush": "npm test"
},
"files": [
"dist",
".bemrc.js"
],
"jest": {
"moduleNameMapper": {
"bem-react-core": "<rootDir>/src/index.js"
}
}
}