-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.89 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
64
65
66
67
68
69
70
{
"type": "module",
"name": "@octetstream/object-to-form-data",
"version": "3.0.5",
"description": "Serialize objects, arrays and collections into FormData.",
"keywords": [
"form-data",
"serialization",
"transform",
"object-to-form-data",
"serialize",
"bracket-notation",
"dot-notation"
],
"engines": {
"node": ">= 18"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/octet-stream/object-to-form-data.git"
},
"author": "Nick K. <[email protected]>",
"license": "MIT",
"main": "./lib/object-to-form-data.js",
"types": "./lib/object-to-form-data.ts",
"exports": {
"import": {
"types": "./lib/object-to-form-data.ts",
"default": "./lib/object-to-form-data.js"
},
"require": {
"types": "./lib/object-to-form-data.cts",
"default": "./lib/object-to-form-data.cjs"
}
},
"files": [
"lib"
],
"scripts": {
"build": "pnpm run lint:types && pnpm del-cli lib && tsup",
"lint:types": "tsc --noEmit",
"test": "NODE_OPTIONS=\"--no-warnings --import tsx\" ava",
"coverage": "c8 pnpm test",
"report": "c8 pnpm test && c8 report --reporter=html",
"ci": "c8 pnpm test && c8 report --reporter=json",
"release": "pnpm run build && pnpm exec changeset publish",
"preinstall": "npx only-allow pnpm",
"prepare": "npx is-in-ci || husky"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@size-limit/preset-small-lib": "11.1.4",
"@types/node": "22.4.2",
"@types/sinon": "17.0.3",
"ava": "6.1.3",
"c8": "10.1.2",
"del-cli": "5.1.0",
"formdata-node": "6.0.3",
"husky": "9.1.5",
"lint-staged": "15.2.9",
"sinon": "18.0.0",
"size-limit": "11.1.4",
"tsup": "8.2.4",
"tsx": "4.17.0",
"typescript": "5.5.4"
}
}