-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jackblog-api-koa",
"version": "2.4.0",
"description": "jackblog API koa版",
"main": "server/app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./bin/www",
"debug": "cross-env NODE_ENV=development nodemon --inspect ./bin/www",
"serve:test": "cross-env NODE_ENV=test nodemon ./bin/www",
"pm2-start": "pm2 start --no-daemon process.json",
"ava": "cross-env NODE_ENV=test ava test",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text ava --serial",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackhutu/jackblog-api-koa.git"
},
"keywords": [
"jackblog"
],
"author": "Jack Hu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackhutu/jackblog-api-koa/issues"
},
"homepage": "https://github.com/jackhutu/jackblog-api-koa#readme",
"bin": "./node_modules/.bin/",
"ava": {
"files": [
"test/**/*.test.js"
],
"failFast": true,
"tap": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"stage-0",
"es2015-node6"
],
"plugins": [
"espower",
"transform-runtime"
]
},
"dependencies": {
"bunyan": "^1.8.12",
"debug": "^3.0.0",
"ioredis": "^3.1.4",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-compress": "^2.0.0",
"koa-generic-session": "^2.0.0",
"koa-json": "^2.0.2",
"koa-jwt": "^3.2.1",
"koa-logger": "^3.0.1",
"koa-multer": "^1.0.2",
"koa-passport": "^3.0.0-rc.2",
"koa-redis": "^3.0.0",
"koa-response-time": "^2.0.0",
"koa-router": "^7.1.1",
"lodash": "^4.17.4",
"markdown-it": "^8.3.2",
"mongoose": "^4.11.7",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-qq": "0.0.3",
"passport-weibo": "^0.1.2",
"qiniu": "^7.0.6",
"trek-captcha": "^0.3.0",
"xss": "^0.3.3"
},
"devDependencies": {
"ava": "^0.22.0",
"ava-spec": "^1.0.1",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"coveralls": "^2.11.15",
"cross-env": "^5.0.5",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.0",
"nyc": "^11.1.0",
"sinon": "^3.2.1",
"superkoa": "^1.0.3",
"supertest": "^3.0.0"
}
}