-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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": "@aldojs/response",
"version": "1.0.0",
"description": "HTTP Response utilities",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc && npm test",
"test": "mocha -R dot -r ts-node/register \"test/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aldojs/response.git"
},
"keywords": [
"http",
"https",
"response"
],
"author": "absolux",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldojs/response/issues"
},
"homepage": "https://github.com/aldojs/response#readme",
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.36",
"@types/sinon": "^4.3.3",
"mocha": "^5.2.0",
"sinon": "^4.5.0",
"ts-node": "^4.1.0",
"typescript": "^3.1.5"
},
"dependencies": {
"@sindresorhus/is": "^0.9.0",
"mime-types": "^2.1.18"
}
}