forked from milamer/parse-nested-form-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
71
72
73
74
75
76
77
{
"name": "parse-nested-form-data",
"version": "1.0.0",
"description": "A tiny node module for parsing FormData by name into objects and arrays",
"main": "dist/parse-nested-form-data.cjs.js",
"module": "dist/parse-nested-form-data.esm.js",
"types": "dist/index.d.ts",
"keywords": [
"FormData",
"parse",
"nested",
"form",
"array",
"object",
"parse"
],
"author": "Christian Schurr <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/milamer/parse-nested-form-data"
},
"bugs": {
"url": "https://github.com/milamer/parse-nested-form-data/issues"
},
"homepage": "https://github.com/milamer/parse-nested-form-data#readme",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage node_modules",
"build:toc": "npx doctoc .",
"build": "kcd-scripts build --bundle --environment BUILD_NAME:parseNestedFormData",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"typecheck": "kcd-scripts typecheck",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.19.0"
},
"devDependencies": {
"@remix-run/web-file": "^3.0.2",
"@remix-run/web-form-data": "^3.0.3",
"kcd-scripts": "^12.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@remix-run/web-file": ">=3.0.0"
},
"peerDependenciesMeta": {
"@remix-run/web-form-data": {
"optional": true
}
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"import/extensions": "off",
"max-lines-per-function": "off",
"one-var": [
"error",
"never"
],
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-loop-func": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}