-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "koa-yield-breakpoint",
"version": "2.1.0",
"description": "Add breakpoints around `yield` expression especially for koa@1.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "node example/app"
},
"keywords": [
"koa",
"yield",
"breakpoint"
],
"author": {
"name": "nswbmw",
"url": "https://github.com/nswbmw"
},
"license": "MIT",
"engines": {
"node": ">=8.1"
},
"dependencies": {
"debug": "3.1.0",
"escodegen": "1.9.0",
"esprima": "4.0.0",
"glob": "7.1.2",
"lodash": "4.17.4",
"node-uuid": "1.4.8",
"shimmer": "1.2.0",
"source-map-support": "0.5.0"
},
"devDependencies": {
"eslint": "4.15.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"koa": "1.4.1",
"koa-route": "2.4.2",
"mongolass": "4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nswbmw/koa-yield-breakpoint"
}
}