-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
60
61
62
63
{
"name": "@kakang/abstract-send",
"version": "0.0.6",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"clean": "node ../../scripts/build.mjs --clean",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"build": "node ../../scripts/build.mjs --build=\"all\"",
"build:cjs": "node ../../scripts/build.mjs --build='cjs'",
"build:mjs": "node ../../scripts/build.mjs --build='mjs'",
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit",
"test": "npm run lint && npm run unit",
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/kaka-ng/nodejs.git"
},
"author": "KaKa <kaka@kakang.dev>",
"license": "MIT",
"devDependencies": {
"@kakang/unit": "workspace:^",
"@types/escape-html": "^1.0.4",
"@types/fast-decode-uri-component": "^1.0.0",
"@types/http-errors": "^2.0.4",
"@types/node": "^22.13.8",
"@types/supertest": "^6.0.2",
"c8": "^10.1.3",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"neostandard": "^0.12.1",
"rimraf": "^6.0.1",
"supertest": "^6.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.11",
"typescript": "~5.8.2"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"escape-html": "^1.0.3",
"fast-decode-uri-component": "^1.0.1",
"http-errors": "^2.0.0",
"mime": "^4.0.6"
}
}