forked from CyrusRoshan/cachepurger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 768 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cachebuster",
"version": "0.0.0",
"description": "purge files that have changed from your website's cloudflare cache",
"main": "dist/index.js",
"repository": "git@github.com:CyrusRoshan/cachebuster.git",
"author": "Cyrus Roshan <cyrusroshan123@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"watch": "parcel watch ./src/index.ts -d dist --no-source-maps --target node --bundle-node-modules --no-hmr",
"build": "parcel build ./src/index.ts -d dist --no-source-maps --target node --bundle-node-modules --no-minify"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^2.2.0",
"cross-fetch": "^3.0.4"
},
"devDependencies": {
"parcel": "^1.12.4",
"typescript": "^4.4.4"
}
}