formap
Version:
HTML forms to data, a better alternative to FormData()
79 lines (78 loc) • 1.58 kB
JSON
{
"name": "formap",
"version": "0.2.1",
"description": "HTML forms to data, a better alternative to FormData()",
"author": "Shahab Movahhedi <dev@shmovahhedi.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/movahhedi/formap"
},
"bugs": {
"url": "https://github.com/movahhedi/formap/issues"
},
"homepage": "https://github.com/movahhedi/formap#readme",
"keywords": [
"formap",
"form",
"map",
"object",
"array",
"formdata",
"form-data",
"serialize",
"serializeArray",
"jquery"
],
"packageManager": "yarn@4.9.1",
"type": "module",
"source": "./src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest"
},
"dependencies": {
"maps-diff": "^0.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-types2": "^1.0.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"cspell": {
"version": "0.2",
"words": [
"formap",
"formdata",
"microbundle"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": false
}
]
}
}
}