-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 721 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 721 Bytes
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
{
"name": "object-to-formdata",
"version": "4.5.1",
"keywords": [
"form",
"formdata",
"javascript",
"object",
"object-to-formdata",
"submit"
],
"repository": "github:therealparmesh/object-to-formdata",
"license": "MIT",
"author": "Parmesh Krishen",
"main": "src/index.js",
"types": "types.d.ts",
"scripts": {
"prepare": "pro-commit",
"pro-commit:task": "pretty-quick --staged",
"test": "jest --coverage"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"jest": "^27.4.7",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"pro-commit": "^1.2.3"
}
}