-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "react-material-responsive-grid-source",
"private": true,
"version": "1.2.2",
"description": "A set of React components implementing the material-responsive-grid CSS framework.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/STORIS/react-material-responsive-grid.git"
},
"scripts": {
"build": "npm run build:components && npm run build:copy-files",
"build:components": "cross-env NODE_ENV=production babel -d ./build ./src",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"clean:build": "rimraf ./build",
"prebuild": "npm run lint && npm run test && npm run clean:build",
"lint": "eslint --ignore-path .eslintignore -- ./src/. ",
"test": "jest"
},
"keywords": [
"grid",
"material design",
"responsive",
"react",
"components"
],
"author": "Ken Gregory",
"license": "MIT",
"homepage": "https://github.com/STORIS/react-material-responsive-grid",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.22.1",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"cross-env": "^5.1.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"expect": "^21.2.1",
"fs-extra": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.1.1",
"rimraf": "^2.5.4"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"material-responsive-grid": "^1.1.0",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
}
}