-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "skybase",
"version": "0.1.95",
"description": "sky框架",
"main": "index.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/kongnet/skybase.git"
},
"scripts": {
"cz": "conventional-changelog -p atom -i CHANGELOG.md -s -r 0 && git add . && git status && git cz",
"push": "npm version patch && npm publish . && git push",
"test": "nyc --reporter=html mocha ./tests/*.js",
"demo1": "nodemon demo/1-simple/index.js",
"demo2": "nodemon demo/2-api-register/index.js",
"demo3": "nodemon demo/3-full-module/index.js",
"demo4": "nodemon demo/4-api-to-file/index.js",
"demo5": "nodemon demo/5-mock-api/index.js",
"demo6": "nodemon demo/6-sql-test/index.js",
"demo7": "nodemon demo/7-token/index.js",
"demo8": "nodemon demo/8-test/index.js",
"demo9": "nodemon demo/9-mysql-chart/index.js"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"amqplib": "*",
"figlet": "^1.5.2",
"kafka-node": "*",
"koa": "^2.13.4",
"koa-better-body": "^3.3.9",
"koa-convert": "^2.0.0",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"meeko": "*"
},
"devDependencies": {
"conventional-changelog": "^3.1.10",
"cz-jt": "^0.1.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-jt"
}
}
}