forked from edwardtilley/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 836 Bytes
/
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
{
"name": "appseed-docs",
"version": "0.0.1",
"description": "AppSeed App Generator - The official documentation",
"devDependencies": {
"rimraf": "^2.5.2"
},
"engines": {
"node": ">=0.10.1"
},
"scripts": {
"start" : "mkdocs serve",
"build" : "mkdocs build",
"deploy" : "rimraf ./site && mkdocs build && node deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/app-generator/docs"
},
"bugs": {
"url": "https://github.com/app-generator/docs/issues",
"email": "[email protected]"
},
"author": "AppSeed.us <[email protected]> (https://appseed.us)",
"license": "MIT",
"private": false,
"dependencies": {
"ftp-deploy": "^2.3.3",
"markdown-include":""
}
}