-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "atomic-url",
"version": "0.0.0-development",
"description": "A URL shortener POC built using Cloudflare Worker.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint . --ext js,ts --ignore-path .eslintignore",
"eslint:fix": "eslint --fix . --ext js,ts --ignore-path .eslintignore",
"prettier": "prettier \"./**/*.{js,ts,yml,yaml}\" -l --ignore-path .eslintignore",
"prettier:fix": "prettier \"./**/*.{js,ts,yml,yaml}\" --write --ignore-path .eslintignore",
"semantic-release": "semantic-release"
},
"author": "Jerry Ng <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "8.57.1",
"prettier": "3.4.1",
"semantic-release": "19.0.5"
},
"dependencies": {
"itty-router": "2.6.6",
"nanoid": "4.0.2",
"serverless-cloudflare-workers": "1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ngshiheng/atomic-url.git"
},
"release": {
"branches": [
"main"
]
}
}