-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 854 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
{
"name": "multipart-ts",
"version": "0.0.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**.js",
"dist/**.d.ts"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"pretest": "npm run build",
"docs": "typedoc src",
"test": "mocha"
},
"keywords": [],
"author": "Zefir",
"license": "LGPL-3.0-only",
"repository": {
"url": "git+https://github.com/zefir-git/Multipart.ts.git"
},
"description": "TypeScript library for multipart data parsing and creation",
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^11.0.1",
"typedoc": "^0.27.2",
"typedoc-plugin-mdn-links": "^4.0.1",
"typescript": "^5.5.4"
}
}