UNPKG

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