-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.11 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
{
"name": "monking",
"version": "1.1.3",
"description": "Monkey King",
"scripts": {
"dev": "nodemon --trace-deprecation examples/index",
"prepare": "rm -rf lib && babel src --out-dir lib"
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/register": "^7.0.0",
"chokidar": "^2.0.3",
"escape-html": "^1.0.3",
"extend2": "^1.0.0",
"glob": "^7.1.2",
"injecting": "^2.6.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-logger": "^3.2.0",
"koa-static-cache": "^5.1.2",
"log4js": "^3.0.6",
"moment": "^2.22.2",
"path-to-regexp": "^2.2.0",
"pm2": "^3.0.3",
"semver": "^5.5.0",
"string-to-stream": "^1.1.1",
"typeis": "^1.1.2"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-mpfe": "^1.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.18.5"
},
"engines": {
"node": ">= 8.9.0"
},
"main": "lib/index.js",
"repository": "https://github.com/chenhebing/monking.git",
"author": "chenhebing",
"license": "MIT",
"nodemonConfig": {
"verbose": false,
"restartable": "rs",
"ignore": [
".git/",
"node_modules/"
],
"execMap": {
"js": "node --harmony"
},
"watch": [
"src",
"examples/config",
"examples/server/model/**/index.js",
"examples/index.js"
],
"legacyWatch": true,
"env": {
"NODE_ENV": "development"
},
"ext": "*"
}
}