-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.31 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
71
72
73
{
"name": "bret.io",
"version": "1.0.0",
"description": "profesh website",
"main": "index.js",
"scripts": {
"test": "run-s test:*",
"test:deps": "dependency-check ./package.json --entry src/index.js",
"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 dist/bundle.css",
"build:js": "browserify src/index.js --debug | exorcist dist/bundle.js.map > dist/bundle.js",
"build:md": "sitedown src -b dist -l src/layout.html",
"build:feed": "generate-feed src/log --dest dist",
"build:static": "cpx 'src/**/*.{png,svg,jpg,jpeg,pdf,mp4,mp3}' dist",
"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:js": "budo src/index.js:bundle.js --dir dist --live --open",
"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 dist && mkdirp dist",
"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": "^9.0.0",
"browserify": "^16.0.0",
"budo": "^11.0.0",
"cpx": "^1.5.0",
"dependency-check": "^3.0.0",
"exorcist": "^1.0.0",
"generate-feed": "^1.0.4",
"gravatar-favicons": "^1.0.2",
"highlight.js": "^9.15.6",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.0",
"postcss": "^7.0.0",
"postcss-browser-reporter": "^0.6.0",
"postcss-cli": "^6.0.0",
"postcss-import": "^12.0.0",
"postcss-nesting": "^7.0.0",
"postcss-reporter": "^6.0.0",
"postcss-url": "^8.0.0",
"rimraf": "^2.5.4",
"sitedown": "^3.0.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"style.css": "^1.0.0",
"tape": "^4.6.2",
"top-bar.css": "^2.0.0"
}
}