-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "form_to_object",
"title": "formToObject",
"description": "Convert a HTML form to an a JavaScript plain object (multi-dimensional).",
"version": "3.1.0",
"homepage": "https://github.com/serbanghita/formToObject",
"author": "Serban Ghita <[email protected]>",
"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",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"test": "jest",
"test:e2e": "wdio run ./wdio.conf.ts"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/user-event": "^14.5.1",
"@testing-library/webdriverio": "^3.2.1",
"@types/jest": "29.5.10",
"@types/mocha": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@wdio/cli": "^8.21.0",
"@wdio/local-runner": "^8.21.0",
"@wdio/mocha-framework": "^8.21.0",
"@wdio/spec-reporter": "^8.21.0",
"@wdio/static-server-service": "^8.21.0",
"eslint": "^8.52.0",
"expect": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"source-map-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"wdio-wait-for": "^3.0.7",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.10.0"
}
}