-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.53 KB
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": "v-logger",
"version": "0.0.1",
"description": "A logging middleware",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "node tools/build clean",
"build": "npm run clean && tsc -p . && node tools/build move",
"test": "npm run build && nyc ava",
"release": "standard-version && git push --follow-tags origin master"
},
"engines": {
"node": ">=6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myaooo/v-logger.git"
},
"keywords": [
"logging",
"middelware"
],
"author": "Yao Ming",
"license": "MIT",
"bugs": {
"url": "https://github.com/myaooo/v-logger/issues"
},
"homepage": "https://github.com/myaooo/v-logger#readme",
"devDependencies": {
"@types/koa": "^2.0.39",
"@types/node": "^7.0.18",
"ava": "^0.19.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.0.0",
"gulp-typescript": "^3.1.6",
"koa": "^2.2.0",
"nock": "^9.0.13",
"nyc": "^10.3.2",
"shelljs": "^0.7.7",
"supertest": "^3.0.0",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
},
"peerDependencies": {
"koa": "2.2.0"
},
"ava": {
"files": [
"dist/**/*.spec.js"
]
},
"nyc": {
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.spec.js"
],
"extensions": [
".ts"
],
"sourceMap": true,
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"check-coverage": false
}
}