This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
{
"name": "docs-server",
"version": "1.6.2",
"description": "A server which is used to build one of microservices for docs system",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lbwa/docs-server.git"
},
"author": "Bowen <mr_lbw@outlook.com>",
"license": "MIT",
"private": false,
"scripts": {
"ts": "npx tsc",
"static": "yarn clean && yarn ts && node sample/static",
"server": "node sample/dev",
"dev": "yarn clean && yarn run ts && yarn run server",
"commit": "git add . && git-cz",
"clean": "rm -vrf dist/*",
"test": "yarn ts && cross-env NODE_ENV=test npx mocha test/app.spec.js",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "sh scripts/release.sh"
},
"dependencies": {
"chalk": "^2.4.1",
"glob": "^7.1.2",
"gray-matter": "^4.0.1",
"koa": "^2.5.2",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"mark-to-json": "^0.3.0"
},
"devDependencies": {
"@types/koa": "^2.0.46",
"@types/koa-compress": "^2.0.8",
"@types/koa-router": "^7.0.30",
"@types/koa-send": "^4.1.1",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"commitizen": "^2.10.1",
"conventional-changelog-cli": "^2.0.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"supertest": "^3.1.0",
"typescript": "^2.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/lbwa/docs-server/issues"
},
"homepage": "https://github.com/lbwa/docs-server#readme",
"keywords": [
"docs-server",
"blog",
"koa",
"documentation",
"server",
"docs",
"files"
],
"engines": {
"node": ">=7.5.0"
}
}