-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
{
"name": "react-material-flexbox",
"version": "1.0.9",
"description": "React flexbox component following the guidelines set by the angular material team",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"compile": "babel ./src --out-dir ./dist && npm run copy:sass",
"copy:sass": "cpx './src/**/*.scss' ./dist",
"build": "npm run clean && npm run lint && npm run compile",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "eslint src",
"lint:sass": "sass-lint -c .sass-lint.yml 'src/**/*.scss' -v -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yhbrandon/react-material-flexbox.git"
},
"author": "Brandon Clark",
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"lodash": "^4.15.0",
"node-sass": "^3.9.3",
"normalize.css": "^4.2.0",
"postcss-loader": "^0.13.0",
"react": "^15.3.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"cpx": "^1.5.0",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-jsx": "^3.0.0",
"eslint-config-standard-react": "^4.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.1",
"eslint-plugin-standard": "^2.0.0",
"rimraf": "^2.5.4",
"sass-lint": "^1.9.1"
}
}