-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "semantic-release-chrome",
"version": "0.0.0-development",
"exports": "./dist/index.js",
"author": "Gabriel Duarte (https://www.gabrielduarte.dev)",
"license": "MIT",
"description": "Set of semantic-release plugins for publishing a Chrome extension release",
"engines": {
"node": ">=16"
},
"keywords": [
"semantic-release",
"plugin",
"chrome",
"webstore",
"extension",
"publish",
"version"
],
"files": [
"dist"
],
"scripts": {
"start": "yarn build --watch",
"build": "rimraf ./dist && tsc && babel src --out-dir dist --extensions .js,.jsx,.ts,.tsx",
"lint": "eslint src",
"ci": "yarn lint && yarn build",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/archiver": "5.3.1",
"@types/fs-extra": "9.0.13",
"@types/lodash.template": "4.5.1",
"@types/node": "18.0.1",
"@types/semantic-release": "17.2.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"typescript": "4.7.4"
},
"dependencies": {
"@semantic-release/error": "3.0.0",
"aggregate-error": "4.0.1",
"archiver": "5.3.1",
"chrome-webstore-upload": "1.0.0",
"fs-extra": "10.1.0",
"lodash.template": "4.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GabrielDuarteM/semantic-release-chrome.git"
},
"bugs": {
"url": "https://github.com/GabrielDuarteM/semantic-release-chrome/issues"
},
"homepage": "https://github.com/GabrielDuarteM/semantic-release-chrome#readme"
}