forked from mlaursen/react-md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.33 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.33 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-md",
"version": "1.0.0",
"description": "React material design components",
"main": "./lib",
"files": [
"src/",
"dist/",
"lib/",
"LICENSE"
],
"scripts": {
"test": "BABEL_ENV=test jest",
"test:watch": "BABEL_ENV=test jest --watch",
"scripts": "BABEL_ENV=build babel --ignore=__tests__,__mocks__,beforeTest.js ./src/js -d ./lib",
"scripts:watch": "BABEL_ENV=build babel --ignore=__tests__,__mocks__,beforeTest.js ./src/js --watch -s -d ./lib",
"lint:styles": "scss-lint src/scss",
"lint:scripts": "eslint -c .eslintrc src",
"lint": "npm run lint:styles && npm run lint:scripts",
"lint:fix": "eslint -c .eslintrc --fix src",
"css-bundles": "node ./makeBundles.js",
"build:umd": "npm run css-bundles && webpack --progress --colors",
"prebuild": "rimraf lib && rimraf dist && rimraf src/scss/bundles && npm run lint",
"build": "npm run scripts && npm run build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlaursen/react-md.git"
},
"keywords": [
"react-md",
"react",
"material-design",
"material-ui"
],
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://github.com/mlaursen/react-md#readme",
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"intl": "^1.2.5",
"jest-cli": "^16.0.2",
"node-sass": "^3.10.1",
"postcss-loader": "^1.0.0",
"react": "^15.3.x",
"react-addons-css-transition-group": "^15.3.x",
"react-addons-test-utils": "^15.3.x",
"react-addons-transition-group": "^15.3.x",
"react-dom": "^15.3.x",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"dependencies": {
"classnames": "^2.2.5",
"invariant": "^2.2.1",
"react-motion": "^0.4.5",
"react-prop-types": "^0.4.0",
"react-swipeable-views": "^0.7.10"
},
"peerDependencies": {
"react": ">= 15.0.0",
"react-addons-css-transition-group": ">= 15.0.0",
"react-addons-transition-group": ">= 15.0.0",
"react-dom": ">= 15.0.0"
},
"jest": {
"automock": true,
"timers": "fake",
"cacheDirectory": "./.jest-cache",
"setupFiles": [
"<rootDir>/src/beforeTest.js"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/classnames",
"<rootDir>/node_modules/intl",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-pure-render-mixin",
"<rootDir>/node_modules/react-addons-transtion-group",
"<rootDir>/node_modules/react-addons-css-transition-group"
]
}
}