-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bret.io",
"version": "1.0.0",
"description": "profesh website",
"main": "index.js",
"scripts": {
"test": "run-s test:*",
"test:deps": "dependency-check ./package.json src/index.js --no-dev",
"test:lint": "standard | snazzy",
"test:tape": "tape test.js | tap-format-spec",
"test:build": "run-s build",
"build": "npm run clean && run-p build:*",
"build:css": "postcss src/index.css -o public/bundle.css",
"build:md": "sitedown src -b public -l src/layout.html",
"build:feed": "generate-feed src/log --dest public && cp public/feed.xml public/atom.xml",
"build:static": "cpx 'src/**/*.{png,svg,jpg,jpeg,pdf,mp4,mp3,js,json}' public",
"build:icon": "gravatar-favicons --config favicon-config.js",
"watch": "npm run clean && run-p watch:* build:static",
"watch:css": "run-s 'build:css -- --watch'",
"watch:serve": "browser-sync start --server 'public' --files 'public'",
"watch:md": "npm run build:md -- -w",
"watch:feed": "run-s build:feed",
"watch:static": "npm run build:static -- --watch",
"watch:icon": "run-s build:icon",
"clean": "rimraf public && mkdirp public",
"start": "npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/bret.io.git"
},
"keywords": [
"website",
"bret",
"comnes",
"bret comnes"
],
"author": "Bret Comnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/bret.io/issues"
},
"homepage": "https://github.com/bcomnes/bret.io#readme",
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"autoprefixer": "^10.0.0",
"cpx2": "^2.0.0",
"dependency-check": "^4.1.0",
"generate-feed": "^1.1.13",
"gravatar-favicons": "^2.0.0",
"highlight.js": "^10.0.0",
"mkdirp": "^1.0.0",
"npm-run-all": "^4.0.0",
"postcss": "^8.0.3",
"browser-sync": "^2.26.7",
"postcss-browser-reporter": "^0.6.0",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.0",
"postcss-nesting": "^7.0.0",
"postcss-reporter": "^6.0.0",
"postcss-url": "^8.0.0",
"rimraf": "^3.0.0",
"sitedown": "^4.0.0",
"snazzy": "^8.0.0",
"standard": "^14.0.0",
"tape": "^5.0.0",
"top-bar.css": "^2.0.0",
"mine.css": "^4.2.2"
}
}