-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.58 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "semantic-release-amo",
"description": "A semantic-release plugin to publish Firefox add-ons to AMO (addons.mozilla.org).",
"version": "1.0.0",
"author": "iorate",
"bugs": {
"url": "https://github.com/iorate/semantic-release-amo/issues"
},
"dependencies": {
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^4.0.1",
"axios": "^1.3.0",
"execa": "^6.1.0",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"lodash.template": "^4.5.0",
"marked": "^4.2.12",
"zip-dir": "^2.0.0",
"zod": "^3.20.2",
"zod-validation-error": "^0.3.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash.template": "^4.5.1",
"@types/marked": "^4.0.8",
"@types/node": "^14.18.36",
"@types/semantic-release": "^17.2.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"semantic-release": "^20.1.0",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"ignorePatterns": [
"/.yarn",
"/dist",
"/update-addon.d.ts"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"root": true
},
"exports": {
".": "./dist/index.js",
"./update-addon": "./dist/update-addon.js"
},
"files": [
"./dist/*.js",
"./dist/update-addon.d.ts",
"./update-addon.d.ts"
],
"homepage": "https://github.com/iorate/semantic-release-amo#readme",
"keywords": [
"semantic-release",
"amo",
"firefox",
"add-on"
],
"license": "MIT",
"main": "./dist/index.js",
"packageManager": "[email protected]",
"peerDependencies": {
"semantic-release": ">=18"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/iorate/semantic-release-amo.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "run-p lint-eslint lint-prettier lint-tsc",
"lint-eslint": "eslint .",
"lint-prettier": "prettier --check --loglevel warn .",
"lint-tsc": "tsc --noEmit",
"fix": "run-s fix-eslint fix-prettier",
"fix-eslint": "eslint --fix .",
"fix-prettier": "prettier --write --loglevel warn ."
}
}