-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
101 lines (101 loc) · 3.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@balupton/website",
"version": "1.3.6",
"description": "Website of Benjamin Lupton. Founder of Bevry, DocPad and HistoryJS. Aficionado of HTML5, CoffeeScript and NodeJS. Available for consulting, training and talks. ENTP.",
"homepage": "https://github.com/balupton/website",
"license": "(MIT OR CC-BY-4.0)",
"keywords": [
"balupton",
"benjamin lupton",
"website",
"docpad"
],
"badges": {
"list": [
"travisci",
"---",
"patreon",
"flattr",
"liberapay",
"thanksapp",
"boostlab",
"buymeacoffee",
"opencollective",
"crypto",
"paypal",
"wishlist"
],
"config": {
"buymeacoffeeUsername": "balupton",
"cryptoURL": "https://bevry.me/crypto",
"flattrUsername": "balupton",
"liberapayUsername": "bevry",
"opencollectiveUsername": "bevry",
"patreonUsername": "bevry",
"paypalURL": "https://bevry.me/paypal",
"wishlistURL": "https://bevry.me/wishlist"
}
},
"author": "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
"maintainers": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
],
"bugs": {
"url": "https://github.com/balupton/website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/balupton/website.git"
},
"engines": {
"node": "10"
},
"dependencies": {
"docpad-plugin-cachr": "~2.6.1",
"docpad-plugin-cleanurls": "~2.11.0",
"docpad-plugin-coffeekup": "~2.5.0",
"docpad-plugin-coffeescript": "~2.7.0",
"docpad-plugin-eco": "~2.3.0",
"docpad-plugin-feedr": "~2.14.0",
"docpad-plugin-marked": "~2.5.0",
"docpad-plugin-partials": "~2.13.0",
"docpad-plugin-raw": "~2.6.0",
"docpad-plugin-services": "~2.8.0",
"docpad-plugin-stylus": "~2.14.0",
"docpad-plugin-text": "~2.6.0",
"getrepos": "~1.3.0",
"githubauthquerystring": "^1.0.2"
},
"devDependencies": {
"docpad": "^6.82.5",
"docpad-plugin-livereload": "~2.10.0",
"docpad-plugin-serve": "^2.0.1",
"now": "^12.1.9",
"projectz": "^1.5.3",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0"
},
"scripts": {
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out",
"our:compile": "echo no need for this project",
"our:deploy": "echo no need for this project",
"our:meta": "npm run our:meta:projectz",
"our:meta:projectz": "projectz compile",
"our:release": "npm run our:release:push",
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
"our:release:push": "git push origin master && git push origin --tags",
"our:setup": "npm run our:setup:npm",
"our:setup:npm": "npm install",
"our:test": "npm run our:verify && npm test",
"our:verify": "npm run our:verify:stylelint",
"our:verify:stylelint": "stylelint --fix './src/**/*.css'",
"test": "docpad generate --env static"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}