-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.15 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
{
"name": "@spatie/scss",
"version": "1.4.0",
"description": "SCSS boilerplate with common functions, mixins, helpers and patterns",
"main": "settings.scss",
"scripts": {
"build": "webpack",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/spatie/scss.git"
},
"keywords": [
"spatie"
],
"author": "Willem Van Bockstal",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatie/scss/issues"
},
"homepage": "https://github.com/spatie/scss",
"dependencies": {
"avalanche-css": "^1.2.0",
"normalize-css": "^2.3.1"
},
"devDependencies": {
"autoprefixer": "^6.5.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.10.1",
"path": "^0.12.7",
"postcss-loader": "^0.13.0",
"raw-loader": "^0.5.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.11"
},
"babel": {
"presets": [
"es2015"
]
}
}