-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
116 lines (116 loc) · 3.56 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "docpad-website",
"version": "0.4.1",
"private": true,
"description": "The Docpad Website",
"homepage": "https://github.com/docpad/website",
"license": "(MIT OR CC-BY-4.0)",
"keywords": [
"docpad",
"website"
],
"badges": {
"list": [
"travisci",
"---",
"patreon",
"opencollective",
"flattr",
"paypal",
"bitcoin",
"wishlist"
],
"config": {
"patreonUsername": "bevry",
"opencollectiveUsername": "bevry",
"flattrUsername": "balupton",
"paypalURL": "https://bevry.me/paypal",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist"
}
},
"author": "Bevry Pty Ltd <[email protected]> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)",
"Chase Colman <[email protected]> (https://github.com/chase)",
"Chris Rebert (http://chrisrebert.com)",
"Eduardo Lavaque <[email protected]> (http://greduan.com)",
"Lynn Fisher <[email protected]> (http://lynnandtonic.com)",
"Michael Duane Mooring <[email protected]> (http://mikeum.us)",
"vsopvsop (https://github.com/vsopvsop)",
"Steve Mc <[email protected]> (http://www.stevemcarthur.co.uk)",
"Michael Duane Mooring (http://mdm.cc)",
"Hamza Anis <[email protected]> (https://github.com/HamzaAnis)"
],
"bugs": {
"url": "https://github.com/docpad/website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/docpad/website.git"
},
"engines": {
"node": "8"
},
"dependencies": {
"docpad": "^6.80.7",
"docpad-plugin-cleanurls": "~2.11.0",
"docpad-plugin-downloader": "~2.4.0",
"docpad-plugin-eco": "~2.3.0",
"docpad-plugin-highlightjs": "~2.6.0",
"docpad-plugin-marked": "~2.5.0",
"docpad-plugin-raw": "~2.6.0",
"docpad-plugin-repocloner": "~2.4.0",
"docpad-plugin-text": "~2.6.0",
"getcontributors": "^1.4.5",
"outpatient": "^3.2.0"
},
"devDependencies": {
"now": "^11.3.10",
"coffeelint": "^2.1.0",
"docpad-plugin-livereload": "~2.10.0",
"eslint": "^5.3.0",
"projectz": "^1.4.0",
"stylelint": "^9.4.0",
"stylelint-config-standard": "^18.2.0"
},
"scripts": {
"our:setup": "npm run our:setup:npm",
"our:setup:npm": "npm install",
"our:clean": "rm -Rf ./docs ./es2015 ./es5 ./out",
"our:compile": "echo no need for this project",
"our:meta": "npm run our:meta:projectz",
"our:meta:projectz": "projectz compile",
"our:verify": "npm run my:verify:eslint && npm run my:verify:coffeelint && npm run my:verify:stylelint",
"our:deploy": "echo no need for this project",
"our:test": "npm run our:verify && npm test",
"our:release": "npm run our:release:prepare && 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",
"my:verify:eslint": "eslint --fix ./ --ignore-path .gitignore",
"my:verify:coffeelint": "coffeelint ./src",
"my:verify:stylelint": "stylelint --fix 'src/**/*.css'",
"test": "docpad generate --silent --env static"
},
"now": {
"name": "website",
"type": "static",
"public": true,
"alias": [
"docpad",
"docpad.org"
],
"files": [
"out"
],
"static": {
"directoryListing": false,
"cleanUrls": true,
"trailingSlash": false,
"public": "out"
}
}
}