-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 2.09 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 2.09 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
{
"name": "michaelbragg",
"version": "0.1.0",
"license": "proprietary",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://www.michaelbragg.net/",
"repository": "https://github.com/michaelbragg/published/",
"readme": "https://github.com/michaelbragg/published/blob/master/readme.md",
"bugs": "https://github.com/michaelbragg/published/issues/",
"author": "Michael Bragg <michael@michaelbragg.net>",
"contributors": [],
"main": "gruntfile.js",
"engines": {
"node": "6.11.*"
},
"browserslist": [
"> 5%",
"last 2 versions",
"not ie 10"
],
"dependencies": {
"normalize.css": "7.0.*"
},
"devDependencies": {
"autoprefixer": "6.4.x",
"cssnano": "3.7.x",
"imagemin-cli": "3.0.*",
"node-sass": "4.5.*",
"npm-run-all": "4.1.*",
"postcss": "^6.0.17",
"postcss-cli": "4.1.*",
"postcss-cssstats": "1.0.x",
"postcss-sorting": "1.6.x",
"stylefmt": "5.0.*",
"stylelint": "8.4.*",
"stylelint-no-unsupported-browser-features": "1.0.*",
"stylelint-scss": "1.4.*",
"svgstore-cli": "1.3.*",
"watch": "1.0.*"
},
"scripts": {
"build": "npm-run-all -s styles images",
"build:watch": "npm-run-all --parallel styles:watch",
"styles": "npm run sass && npm run postcss",
"styles:watch": "watch 'npm run styles -- --source-map' ./assets/ui/",
"sass": "node-sass ./assets/ui/style.scss style.css --indent-type tab",
"postcss": "postcss style.css --output style.css --use autoprefixer cssnano",
"images": "npm run raster-images && npm run svg",
"raster-images": "imagemin ./assets/ui/**/*.{png,jpg,gif} --out-dir ./ui",
"svg": "npm-run-all --parallel svg:icons svg:logos",
"svg:watch": "watch 'npm run svg ./assets/ui/'",
"svg:icons": "svgstore -o ./ui/icons.svg -p icon- ./assets/gui/svg-icons/*.svg --inline",
"svg:logos": "svgstore -o ./ui/logos.svg -p logo- ./assets/gui/svg-logos/*.svg --inline",
"test": "npm run stylelint",
"stylelint": "stylelint ./assets/ui/**/*.scss --syntax scss"
},
"stylelint": {
"extends": "./_tests/stylelint.config.js"
}
}