-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 983 Bytes
/
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
{
"name": "@feelinglovelynow/get-form-entries",
"version": "1.0.5",
"description": "Recieves Form Data and responds with an Object",
"author": "https://github.com/feelinglovelynow?tab=repositories",
"license": "MIT",
"type": "module",
"types": "./dist/index.ts",
"exports": "./dist/index.js",
"files": [
"dist",
"tsc",
"src"
],
"keywords": [
"form",
"array",
"utility",
"formdata"
],
"scripts": {
"watch": "pnpm tsc -w",
"build": "bash ./build.sh",
"cloud": "pnpm build && pnpm publish --access public .",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"esbuild": "^0.19.8",
"jest": "^29.7.0",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feelinglovelynow/get-form-entries.git"
},
"bugs": {
"url": "https://github.com/feelinglovelynow/get-form-entries/issues"
}
}