-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "astro-webfinger",
"version": "1.0.0",
"type": "module",
"exports": {
".": "./index.ts",
"./routes/*": "./src/routes/*"
},
"files": [
"src",
"index.ts"
],
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/tony-sull/astro-webfinger.git"
},
"author": {
"name": "Tony Sullivan",
"url": "https://tonysull.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tony-sull/astro-webfinger/issues"
},
"scripts": {
"prepare": "husky install",
"format": "run-s format:*",
"format:prettier": "prettier --ignore-path .prettierignore -w .",
"format:eslint": "eslint --fix --ignore-path .eslintignore --ext .js,.ts,.astro --fix .",
"lint": "run-s lint:*",
"lint:prettier": "prettier --ignore-path .prettierignore -c .",
"lint:eslint": "eslint --fix --ignore-path .eslintignore --ext .js,.ts,.astro ."
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"format": "^0.2.2",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"semantic-release": "^20.1.1"
}
}