-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-mc",
"version": "0.15.6",
"description": "React binding of Material Components (MDC-REACT)",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"prepublishOnly": "./ake build"
},
"files": [
"lib/"
],
"repository": "gutenye/react-mc",
"keywords": [
"material-components-web",
"react-material-components-web",
"material-design",
"material-components",
"mdc",
"react"
],
"author": "gutenye",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"material-components-web": "^0.25.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@gutenye/react-svg-loader": "^2.0.8",
"babel-cli": "^6.18.0",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint-config-guten-react": "1.1.15",
"file-loader": "^0.11.2",
"flow-bin": "^0.49.1",
"flow-copy-source": "^1.2.0",
"flow-typed": "^2.1.2",
"gh-pages": "^1.0.0",
"jest": "^20.0.4",
"jest-enzyme": "^3.6.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-frame-component": "^1.1.1",
"react-styleguidist": "^5.5.4",
"react-test-renderer": "^15.6.1",
"style-loader": "^0.18.2",
"styled-components": "^2.2.3",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.0"
},
"eslintConfig": {
"extends": "guten-react",
"rules": {
"react/no-find-dom-node": "off",
"import/no-extraneous-dependencies": "off"
}
},
"jest": {
"transform": {
"\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js"
}
}