-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.12 KB
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
{
"name": "form_to_object",
"title": "formToObject",
"description": "Convert a HTML form to an a JavaScript plain object (multi-dimensional).",
"version": "3.2.0",
"homepage": "https://github.com/serbanghita/formToObject",
"author": "Serban Ghita <serbanghita@gmail.com>",
"main": "build/bundle/formToObject.min.js",
"types": "build/src/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/serbanghita/formToObject.git"
},
"keywords": [
"javascript",
"form",
"object",
"json",
"serialize"
],
"bugs": {
"url": "https://github.com/serbanghita/formToObject/issues"
},
"license": "MIT",
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"build": "node esbuild.config.js && tsc --emitDeclarationOnly -p tsconfig.build.json",
"dev": "node esbuild.config.js --dev --watch",
"lint": "eslint .",
"test": "vitest run",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "wdio run ./wdio.conf.ts",
"prerelease": "npm ci && npm run build && npm run lint && npm run test:unit && npm run test:integration && npm run test:e2e",
"release:patch": "npm run prerelease && npm version patch && npm publish",
"release:minor": "npm run prerelease && npm version minor && npm publish",
"release:major": "npm run prerelease && npm version major && npm publish"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"@types/mocha": "^10.0.10",
"@vitest/coverage-v8": "^4.0.16",
"@wdio/cli": "^9.14.0",
"@wdio/local-runner": "^9.14.0",
"@wdio/mocha-framework": "^9.14.0",
"@wdio/spec-reporter": "^9.14.0",
"@wdio/static-server-service": "^9.14.0",
"@wdio/types": "^9.20.0",
"esbuild": "^0.25.0",
"eslint": "^9.18.0",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.0",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}