-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "workers-lastfm-shields",
"private": true,
"version": "1.0.0",
"authors": [
"TED Vortex <[email protected]>"
],
"homepage": "https://github.com/0-vortex/workers-lastfm-shields",
"repository": {
"type": "git",
"url": "[email protected]/0-vortex/workers-lastfm-shields.git"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"license": "BSD-3-Clause",
"description": "Generate last.fm most recently played shields endpoint configuration with Cloudflare Workers in 200+ edge locations",
"keywords": [
"badges",
"badges-markdown",
"lastfm",
"lastfm-api",
"markdown",
"markdown-badges",
"github",
"readme",
"cloudflare",
"cloudflare-workers",
"shieldsio"
],
"main": "src/index.js",
"scripts": {
"start": "wrangler dev",
"build": "wrangler build",
"deploy": "wrangler publish",
"format": "eslint ./src --fix --report-unused-disable-directives",
"test": "echo \"Error: no test specified\" && exit 1",
"push": "cz"
},
"devDependencies": {
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}