-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.77 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
103
104
105
106
107
108
109
{
"name": "semantic-release-firefox",
"version": "0.0.0-DEVELOPMENT",
"main": "dist/index.js",
"author": "Felix Becker <felix.b@outlook.com>",
"license": "MIT",
"description": "Set of semantic-release plugins for publishing a Firefox extension release",
"homepage": "https://github.com/felixfbecker/semantic-release-firefox",
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/semantic-release-firefox.git"
},
"bugs": {
"url": "https://github.com/felixfbecker/semantic-release-firefox/issues"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"semantic-release",
"plugin",
"firefox",
"mozilla",
"webstore",
"extension",
"publish",
"version"
],
"files": [
"dist"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"src/test/**"
],
"extension": [
".ts"
]
},
"scripts": {
"test": "nyc --require ts-node/register mocha --timeout 20000 \"src/test/*.test.ts\"",
"build": "tsc -p .",
"watch": "tsc -w -p .",
"eslint": "eslint \"src/**/*.ts\"",
"prettier": "prettier \"**/{*.ts,*.json,*.md,*.yml,.*.yml,.prettierrc}\" --write --list-different",
"prettier-check": "npm run prettier -- --write=false",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@sourcegraph/eslint-config": "^0.25.0",
"@types/archiver": "2.1.3",
"@types/cookie-parser": "1.4.2",
"@types/decompress": "4.2.4",
"@types/express": "4.16.1",
"@types/formidable": "1.0.31",
"@types/glob": "7.2.0",
"@types/marked": "3.0.3",
"@types/marked-terminal": "3.1.3",
"@types/mocha": "8.2.3",
"@types/morgan": "1.9.3",
"@types/mz": "2.7.4",
"@types/node": "14.17.34",
"@types/pretty-bytes": "5.1.0",
"@types/puppeteer": "5.4.4",
"@types/rmfr": "2.0.1",
"async-middleware": "^1.2.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"decompress": "^4.2.0",
"eslint": "^7.27.0",
"express": "^4.16.3",
"formidable": "^1.2.1",
"husky": "^0.14.3",
"mocha": "^8.0.0",
"morgan": "^1.9.0",
"nyc": "^13.0.0",
"prettier": "^2.0.0",
"rmfr": "^2.0.0",
"semantic-release": "17.3.0",
"ts-node": "^7.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"aggregate-error": "^1.0.0",
"archiver": "^2.1.1",
"delay": "^5.0.0",
"marked": "^0.7.0",
"marked-terminal": "^3.1.1",
"mz": "^2.7.0",
"otplib": "^12.0.1",
"p-retry": "^4.5.0",
"pretty-bytes": "^5.1.0",
"puppeteer": "^5.5.0",
"upndown": "^2.1.0"
},
"peerDependencies": {
"semantic-release": "^17.3.0"
}
}