-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"name": "@stegopop/fetch-data-forms",
"version": "1.0.5",
"description": "Instantly turn an HTML form element into an asynchronous Fetch request by adding an attribute.",
"main": "public/dist/fetch-data-forms.min.js",
"scripts": {
"js": "babel public/src/FetchDataForms.js --out-file dist/fetch-data-forms.js",
"watch": "npm run js -- --watch",
"minify": "uglifyjs --compress --ie --comments --output dist/fetch-data-forms.min.js -- dist/fetch-data-forms.js",
"serve": "npx http-server -p 3001 --cors -c-1",
"test-api-server": "json-server --watch public/db.json",
"nothing-server": "node index.js",
"prep-release": "npm run js && npm run minify"
},
"author": "Nick Adams",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickolasjadams/fetch-data-forms"
},
"keywords": [
"fetch",
"form",
"instant",
"browser",
"front-end"
],
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/node": "^7.23.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.5",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.24",
"browserslist": "^4.23.0",
"http-server": "^14.1.1",
"json-server": "^0.17.3",
"server": "^1.0.38"
},
"dependencies": {
"tty": "^1.0.1",
"uglify-js": "^3.17.4"
}
}