-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.43 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
{
"name": "lutachu",
"title": "Lutachu Framework",
"author": "Lingoys!Art",
"homepage": "http://github.com/lingoys/lutachu",
"description": "A CSS Framework based on Stylus.",
"version": "2.0.0",
"keywords": [
"CSS",
"Framework",
"Stylus"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Lingoys/Lutachu.git"
},
"bugs": {
"url": "https://github.com/Lingoys/Lutachu/issues"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/{*.css}",
"clean-docs": "rm -rf docs/dist/{*.css}",
"autoprefixer": "postcss -u autoprefixer -r dist/*.css",
"dist-docs": "cp -a dist docs",
"stylus": "stylus src/lutachu.styl --out dist",
"stylus-docs": "stylus --compress docs/assets/stylus/docs.styl --out docs/assets/css",
"stylus-min": "stylus --compress --sourcemap src/lutachu.styl --out dist/lutachu.min.css",
"build:all": "npm run clean && npm run build:css && npm run build:docs",
"build:css": "npm run stylus && npm run stylus-min && npm run autoprefixer",
"build:docs": "npm run dist-docs && npm run stylus-docs",
"pre-push": "npm run build:all",
"watch:css": "onchange 'src/**/*.styl' -- npm run build:css",
"watch:docs": "onchange 'docs/**/*.styl' -- npm run build:docs",
"start": "npm run watch:stylus"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"onchange": "^2.4.0",
"postcss-cli": "^2.5.1",
"stylus": "^0.54.2"
}
}