-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
51
52
53
54
55
{
"name": "go-fonts.css",
"description": "Golang fonts as a node packaged module",
"version": "1.0.2",
"author": "Bret Comnes",
"bugs": {
"url": "https://github.com/bcomnes/go-fonts.css/issues"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"budo": "^11.0.0",
"highlight.js": "^9.8.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.0",
"postcss": "^6.0.19",
"postcss-browser-reporter": "^0.5.0",
"postcss-cli": "^5.0.0",
"postcss-import": "^11.0.0",
"postcss-reporter": "^5.0.0",
"postcss-url": "^7.3.1",
"rimraf": "^2.5.4",
"sitedown": "^3.0.1",
"style.css": "^1.0.0-beta-1",
"top-bar.css": "^1.2.0",
"watchify": "^3.11.0"
},
"homepage": "https://go-fonts.netlify.com",
"keywords": [
"css",
"fonts",
"font",
"golang",
"Go",
"Go Mono",
"woff"
],
"license": "ISC",
"main": "index.css",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/go-fonts.css.git"
},
"scripts": {
"build": "npm run clean && run-p build:*",
"build:css": "postcss site/site.css -o build/bundle.css",
"build:md": "sitedown . -b build -l site/layout.html",
"clean": "rimraf build && mkdirp build",
"start": "npm run watch",
"test": "npm run build",
"watch": "npm run clean && run-p watch:*",
"watch:css": "npm run build:css -- --watch",
"watch:js": "budo --dir build --live --open",
"watch:md": "npm run build:md -- -w"
}
}