-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "@stegopop/ajax-tap",
"version": "1.0.6",
"description": "Listen in on any trusted XHR's made on your webpage. Run functions when your conditions are met.",
"main": "dist/ajax-tap.min.js",
"scripts": {
"js": "babel src/AjaxTap.js --out-file dist/ajax-tap.js",
"watch": "npm run js -- --watch",
"minify": "uglifyjs --compress --ie --comments --output dist/ajax-tap.min.js -- dist/ajax-tap.js",
"serve": "npx http-server -p 3001 --cors -c-1",
"test-api-server": "json-server --watch 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/ajax-tap"
},
"keywords": [
"ajax",
"listener",
"vanilla",
"browser"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"http-server": "^14.1.1",
"json-server": "^0.17.3",
"server": "^1.0.38",
"uglify-js": "^3.17.4"
}
}