-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.15 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
{
"name": "playbook-website",
"version": "0.2.0",
"private": true,
"description": "The Mangrove Playbook Website",
"homepage": "https://github.com/meetmangrove/playbook-website",
"license": "(MIT OR CC-BY-4.0)",
"badges": {
"list": [
"travisci"
],
"config": {}
},
"author": "Mangrove (https://mangrove.io)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"bugs": {
"url": "https://github.com/meetmangrove/playbook-website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/meetmangrove/playbook-website.git"
},
"engines": {
"node": "8",
"npm": "5"
},
"dependencies": {
"docpad": "~6.79.4",
"docpad-plugin-cleanurls": "~2.8.1",
"docpad-plugin-downloader": "~2.2.0",
"docpad-plugin-eco": "~2.2.0",
"docpad-plugin-marked": "~2.3.0",
"docpad-plugin-raw": "~2.4.1",
"docpad-plugin-repocloner": "~2.3.1",
"outpatient": "^3.2.0",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"coffeelint": "^1.16.0",
"docpad-plugin-livereload": "~2.9.0",
"eslint": "^3.19.0",
"projectz": "^1.4.0",
"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 run",
"test": "docpad generate --silent --env static",
"info": "docpad info --silent",
"deploy": "surge --project ./out --domain http://playbook.mangrove.io",
"deploy:staging": "surge --project ./out --domain https://nosy-toy.surge.sh",
"release": "git push && npm test && npm run deploy && npm run deploy:staging"
}
}