-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 805 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 805 Bytes
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
{
"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": "support@appseed.us"
},
"author": "AppSeed.us <support@appseed.us> (https://appseed.us)",
"license": "MIT",
"private": false,
"dependencies": {
"ftp-deploy": "^2.3.3"
}
}