forked from elrumordelaluz/csshake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "csshake",
"version": "1.5.3",
"description": "Some CSS classes to move your DOM!",
"main": "dist/csshake.css",
"scripts": {
"start": "npm run build",
"watch": "node-sass --watch scss/csshake.scss -o docs",
"build": "npm run build:raw && npm run build:min && npm run build:docs && node downloadIndex.js",
"build:docs": "node-sass scss/csshake.scss -o docs --output-style compressed",
"build:raw": "node-sass scss/ -o dist/",
"build:min": "mkdir -p dist/min && node-sass --output-style compressed scss/ -o dist/min && npm run suffix && npm run move",
"suffix": "for file in dist/min/*.css; do mv \"$file\" \"${file%.css}.min.css\"; done",
"move": "mv dist/min/*.css dist && rm -r dist/min"
},
"repository": {
"type": "git",
"url": "https://github.com/elrumordelaluz/csshake.git"
},
"keywords": [
"css",
"transitions",
"animations"
],
"author": "Lionel T <elrumordelaluz@hotmail.com> (http://elrumordelaluz.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elrumordelaluz/csshake/issues"
},
"homepage": "https://github.com/elrumordelaluz/csshake",
"devDependencies": {
"gzip-size": "4.1.0",
"node-sass": "4.9.0",
"pretty-bytes": "4.0.2",
"pug": "2.0.3"
}
}