-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
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
{
"name": "mkdocs-server",
"version": "1.0.0",
"description": "Web server for building MkDocs from Git Repos and hosting generated sites for authenticated users",
"homepage": "https://github.com/nonplus/mkdocs-server#readme",
"repository": {
"type": "git",
"url": "https://github.com/nonplus/mkdocs-server.git"
},
"bugs": {
"url": "https://github.com/nonplus/mkdocs-server/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc",
"serve": "NODE_ENV=production node dist",
"dev": "tsc --watch & nodemon dist",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "npm run lint-ts && npm run lint-pug",
"lint-ts": "tslint -p tsconfig.json",
"lint-pug": "pug-lint -c pug-lint.json src",
"lint-ts-fix": "tslint --fix -p tsconfig.json",
"tsc": "tsc"
},
"keywords": [
"mkdocs"
],
"author": "Stepan Riha",
"license": "MIT",
"dependencies": {
"@types/bluebird": "^3.5.18",
"@types/cookie-parser": "^1.4.1",
"@types/express-session": "^1.15.6",
"@types/lodash": "^4.14.85",
"@types/lowdb": "^0.15.0",
"@types/node": "7.0.22",
"@types/passport": "^0.4.1",
"@types/rimraf": "^2.0.2",
"@types/shortid": "0.0.29",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"express": "4.15.3",
"express-breadcrumbs": "0.0.2",
"http-shutdown": "^1.2.0",
"install": "^0.10.2",
"lodash": "^4.17.4",
"lowdb": "^1.0.0",
"nodemon": "1.11.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-google-oauth2": "^0.1.6",
"passport-slack": "0.0.7",
"pug": "^2.0.0-rc.4",
"rimraf": "^2.6.2",
"shortid": "^2.2.8",
"source-map-support": "^0.5.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/mocha": "2.2.41",
"mocha": "3.4.2",
"pug-lint": "^2.5.0",
"supertest": "3.0.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}