-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "material-responsive-grid-source",
"private": true,
"version": "1.1.1",
"description": "A grid system that adheres to the responsive UI standards outlined for Google's Material Design",
"style": "build/material-responsive-grid.css",
"main": "build/material-responsive-grid.css",
"repository": {
"type": "git",
"url": "https://github.com/STORIS/material-responsive-grid.git"
},
"keywords": [
"css",
"postcss",
"grid",
"material design",
"responsive"
],
"scripts": {
"build": "npm run build:css && npm run build:copy-files",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"build:css": "cross-env NODE_ENV=production postcss src/index.css --output build/material-responsive-grid.css --no-map",
"build:css-dev": "cross-env NODE_ENV=development postcss src/index.css --output build/material-responsive-grid.css --no-map",
"clean:build": "rimraf ./build",
"prebuild": "npm run clean:build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ken Gregory",
"license": "MIT",
"homepage": "https://github.com/STORIS/material-responsive-grid",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.0",
"cross-env": "^5.0.1",
"cssnano": "^3.10.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-prettier": "^2.1.2",
"fs-extra": "^3.0.1",
"postcss": "^6.0.6",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^3.0.0",
"postcss-import": "^10.0.0",
"prettier": "^1.4.4",
"rimraf": "^2.5.4"
}
}