-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.7 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
{
"name": "bevry-learn",
"version": "0.2.0",
"private": true,
"description": "The Bevry Website",
"homepage": "https://github.com/bevry/learn",
"license": "(MIT OR CC-BY-4.0)",
"badges": {
"list": [
"travisci",
"---",
"patreon",
"opencollective",
"gratipay",
"flattr",
"paypal",
"bitcoin",
"wishlist",
"---",
"slackin"
],
"config": {
"patreonUsername": "bevry",
"opencollectiveUsername": "bevry",
"gratipayUsername": "bevry",
"flattrUsername": "balupton",
"paypalURL": "https://bevry.me/paypal",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist",
"slackinURL": "https://slack.bevry.me"
}
},
"author": "Bevry Pty Ltd <us@bevry.me> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <b@lupton.cc> (https://balupton.com)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
"Dirk Ginader (http://ginader.com)",
"vsopvsop (https://github.com/vsopvsop)"
],
"bugs": {
"url": "https://github.com/bevry/learn/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/bevry/learn.git"
},
"engines": {
"node": "6",
"npm": "3"
},
"dependencies": {
"docpad": "~6.79.0",
"docpad-plugin-cleanurls": "~2.8.1",
"docpad-plugin-coffeekup": "~2.2.0",
"docpad-plugin-coffeescript": "~2.5.0",
"docpad-plugin-downloader": "~2.1.4",
"docpad-plugin-eco": "~2.1.0",
"docpad-plugin-highlightjs": "~2.4.0",
"docpad-plugin-marked": "~2.3.0",
"docpad-plugin-raw": "~2.4.1",
"docpad-plugin-repocloner": "~2.2.2",
"docpad-plugin-stylus": "~2.11.0",
"docpad-plugin-text": "~2.3.3",
"moment": "^2.18.1",
"outpatient": "^3.0.0"
},
"devDependencies": {
"coffeelint": "^1.16.0",
"docpad-plugin-livereload": "~2.7.1",
"eslint": "^3.18.0",
"projectz": "^1.3.2",
"surge": "^0.19.0"
},
"main": "node_modules/.bin/docpad-server",
"scripts": {
"our:setup": "npm install",
"our:clean": "rm -Rf ./docs ./es2015 ./out",
"our:compile": "echo 'no need for a compile'",
"our:meta": "npm run our:meta:projectz",
"our:meta:projectz": "projectz compile",
"our:verify": "npm run our:verify:eslint && npm run our:verify:coffeelint",
"our:verify:eslint": "eslint --fix ./ --ignore-path .gitignore",
"our:verify:coffeelint": "coffeelint ./src",
"our:test": "npm run our:verify && npm test",
"our:release": "npm run deploy",
"start": "docpad-server",
"test": "docpad generate --silent --env static",
"info": "docpad info --silent",
"deploy": "surge --project ./out --domain https://learn.bevry.me"
}
}