-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "@hitokoto/koa-respond",
"version": "3.0.3",
"description": "Add useful methods to the Koa context for sending a response",
"main": "lib/koa-respond.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "mocha test/**/*.js --require test/index.js",
"test-watch": "npm run test -- --watch",
"lint": "prettier --write \"lib/**/*.js\" \"test/**/*.js\" && esw lib/ test/",
"lint-watch": "npm run lint -- --watch",
"cover": "istanbul cover -x \"**example/**\" ./node_modules/mocha/bin/_mocha -- test/**/*.js --require test/index.js",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test/**/*.js --require test/index.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"do-publish": "npm run lint && npm run cover && npm publish"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hitokoto-osc/koa-respond.git"
},
"keywords": [],
"author": "a632079 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hitokoto-osc/koa-respond/issues"
},
"homepage": "https://github.com/hitokoto-osc/koa-respond#readme",
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-watch": "7.0.0",
"istanbul": "0.4.5",
"koa": "2.13.0",
"koa-router": "9.4.0",
"mocha": "8.1.1",
"prettier": "2.0.5",
"sinon": "9.0.3",
"sinon-chai": "3.5.0",
"supertest": "4.0.2"
},
"dependencies": {
"is-string": "^1.0.4"
}
}