-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "koa-stream-render",
"version": "0.2.2",
"description": "middleware for koa2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"build-test": "rm -rf ./dist-test && tsc -p tsconfig.test.json",
"mocha": "mocha ./dist-test/*.js",
"test": "npm run build && npm run build-test && npm run mocha",
"istanbul": "istanbul cover _mocha dist-test/*.js && codecov",
"coverage": "npm run test && npm run istanbul"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlee/koa-stream-render.git"
},
"keywords": [
"koa2",
"stream-render"
],
"author": "devlee",
"license": "MIT",
"bugs": {
"url": "https://github.com/devlee/koa-stream-render/issues"
},
"homepage": "https://github.com/devlee/koa-stream-render#readme",
"dependencies": {
"koa": "^2.0.0"
},
"devDependencies": {
"@types/koa": "^2.0.39",
"@types/mocha": "^2.2.41",
"@types/supertest": "^2.0.0",
"chai": "^3.5.0",
"codecov": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"supertest": "^3.0.0",
"typescript": "^2.2.2"
}
}