This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 2.12 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
46
47
48
49
50
{
"name": "@nll/css",
"version": "9.7.1",
"description": "A bunch of css utility classes",
"files": [
"src",
"dist"
],
"scripts": {
"start": "npx sass --watch src/full.scss dist/full/full.css",
"build": "npm run clean && concurrently --no-color \"npm:build:*\" && npm run gzip && npm run docs",
"build:full": "npx sass src/full.scss dist/full/full.css",
"build:full.min": "npx sass --style=compressed src/full.scss dist/full/full.min.css",
"build:minimal": "npx sass src/minimal.scss dist/minimal/minimal.css",
"build:minimal.min": "npx sass --style=compressed src/minimal.scss dist/minimal/minimal.min.css",
"build:standard": "npx sass src/standard.scss dist/standard/standard.css",
"build:standard.min": "npx sass --style=compressed src/standard.scss dist/standard/standard.min.css",
"build:reset": "npx sass src/reset.scss dist/reset/reset.css",
"build:reset.min": "npx sass --style=compressed src/reset.scss dist/reset/reset.min.css",
"docs": "concurrently --no-color \"npm:docs:*\" && cp -R dist/* docs/ && cp static/index.html docs/",
"docs:full": "npx kss --source dist/full/ --destination docs/full --css ./full.min.css --homepage ./static/home-full.md",
"docs:standard": "npx kss --source dist/standard/ --destination docs/standard --css ./standard.min.css --homepage ./static/home-standard.md",
"docs:minimal": "npx kss --source dist/minimal/ --destination docs/minimal --css ./minimal.min.css --homepage ./static/home-minimal.md",
"clean": "rm -rf dist && rm -rf docs",
"gzip": "gzip -k -f dist/*/*.css",
"release": "npx standard-version",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullpub/css.git"
},
"keywords": [
"css",
"postcss",
"utility"
],
"author": "Brandon Blaylock (brandon@null.pub)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/nullpub/css/issues"
},
"homepage": "https://github.com/nullpub/css#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"kss": "^3.0.1",
"sass": "^1.32.7",
"standard-version": "^9.1.0"
}
}