-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
37
38
39
40
41
42
{
"name": "lastfm-proxy-worker",
"version": "1.0.0",
"description": "A Cloudflare Worker acting as a proxy for the LastFM API in order to expose endpoints.",
"scripts": {
"start": "wrangler dev --env=dev",
"pretty-quick": "pretty-quick --staged",
"format": "prettier --write '{src/,test/,''}*.{ts,js,css,json,md}'",
"test": "jest"
},
"author": "Brian Mitchell <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BrianMitchL/lastfm-proxy.git"
},
"private": true,
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@types/jest": "^29.2.3",
"@types/node": "^16.11.7",
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"simple-git-hooks": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3",
"wrangler": "^2.5.0"
},
"simple-git-hooks": {
"pre-commit": "npm run pretty-quick"
},
"engines": {
"node": ">= 16.18.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"automock": false
}
}