-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1017 Bytes
/
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
{
"name": "qoq-compress",
"version": "0.0.6",
"main": "./lib/index.js",
"module": "./es/index.js",
"repository": "git@github.com:qoq-ts/qoq-compress.git",
"author": "原罪 <531362022@qq.com>",
"license": "MIT",
"scripts": {
"test": "jest --runInBand",
"prepublishOnly": "ts-prepublish"
},
"engines": {
"node": "^14.15.0"
},
"exports": {
".": {
"require": "./lib/index.js",
"import": "./es/index.js"
},
"./": "./"
},
"peerDependencies": {
"qoq": ">=0.1.0"
},
"dependencies": {
"@types/koa-compress": "^4.0.1",
"koa-compress": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@types/supertest": "^2.0.11",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"qoq": "^0.0.55",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"ts-prepublish": "^1.0.0",
"typescript": "^4.2.4"
},
"files": [
"package.json",
"es",
"lib",
"README.md",
"LICENSE"
]
}