-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1 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
{
"name": "gllry",
"version": "1.0.0",
"description": "A css-only image gallery",
"main": "index.js",
"repository": "https://github.com/tomlutzenberger/gllry.git",
"bugs": {
"url": "https://github.com/tomlutzenberger/gllry/issues"
},
"author": "Tom Lutzenberger",
"license": "MIT",
"scripts": {
"sass:dev": "node-sass src/gllry.scss dist/gllry.css --output-style=expanded",
"sass:prod": "node-sass src/gllry.scss dist/gllry.min.css --output-style=compressed",
"sass:docs": "node-sass src/docs.scss docs/style.min.css --output-style=compressed",
"sass": "yarn sass:dev && yarn sass:prod && yarn sass:docs && copy:dist_to_docs",
"copy:dist_to_docs": "cpy dist/gllry.min.css docs",
"lint:sass": "stylelint --syntax=scss src/*.scss",
"lint": "yarn lint:sass",
"build": "yarn lint && yarn sass"
},
"devDependencies": {
"cpy-cli": "^3.0.0",
"node-sass": "^7.0.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0"
},
"dependencies": {}
}