UNPKG

962 BJSONView Raw
1{
2 "name": "fdex",
3 "version": "0.1.3",
4 "description": "small form-data extractor",
5 "main": "./dist/index.js",
6 "exports": "./dist/index.js",
7 "types": "./types/index.d.ts",
8 "type": "commonjs",
9 "files": [
10 "dist",
11 "types"
12 ],
13 "scripts": {
14 "build": "tsc --project tsconfig.prod.json",
15 "watch": "tsc --watch",
16 "test": "mocha -r ts-node/register/transpile-only --full-trace 'test/**/*.ts'",
17 "coverage": "nyc npm test"
18 },
19 "author": {
20 "name": "Oleg Kamlowski",
21 "email": "oleg.kamlowski@thomann.de",
22 "url": "https://thomann.de"
23 },
24 "license": "MIT",
25 "devDependencies": {
26 "@types/mocha": "^10.0.0",
27 "@types/node": "^18.11.9",
28 "form-data": "^4.0.0",
29 "mocha": "^10.1.0",
30 "nyc": "^15.1.0",
31 "ts-node": "^10.9.1",
32 "typescript": "^4.8.4"
33 },
34 "repository": {
35 "type": "git",
36 "url": "https://github.com/sovrin/fdex.git"
37 },
38 "keywords": [
39 "multipart",
40 "form-data"
41 ]
42}