forked from demozoo/demozoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.65 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": "demozoo",
"version": "1.0.0",
"description": "Demozoo - The best demoscene website in the world.",
"main": "Gruntfile.js",
"browserslist": [
"last 3 versions"
],
"scripts": {
"autoprefixer": "postcss -u autoprefixer --no-map -r ./static_built/css/dz.css",
"build": "run-p build:*",
"build:css": "npm run sass && npm run autoprefixer && npm run cssnano",
"build:icons": "npm run svgstore:icons && npm run svgo:icons",
"cssnano": "postcss ./static_built/css/dz.css --no-map --use cssnano -o ./static_built/css/dz.css",
"sass": "node-sass --importer node_modules/node-sass-glob-importer/dist/cli.js ./src/style/layout.scss ./static_built/css/dz.css",
"svgo:icons": "svgo --disable=removeUselessDefs --disable=cleanupIDs ./static_built/images/icons.svg",
"svgstore:icons": "svgstore -p icon-- -o ./static_built/images/icons.svg ./src/svg/icons/*.svg",
"watch:css": "onchange \"src/style\" -- run-s sass autoprefixer",
"watch:icons": "onchange \"src/svg\" -- run-s build:icons",
"watch": "run-p watch:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demozoo/demozoo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/demozoo/demozoo/issues"
},
"homepage": "https://github.com/demozoo/demozoo#readme",
"devDependencies": {
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"node-sass": "^4.13.1",
"node-sass-glob-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"postcss-cli": "^6.1.3",
"postcss-normalize": "^7.0.1",
"svgo": "^1.3.2",
"svgstore-cli": "^1.3.1"
},
"dependencies": {}
}