-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
65 lines (65 loc) · 1.24 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
{
"name": "chrome-webstore-upload-cli",
"version": "3.3.1",
"description": "CLI tool to upload Chrome Extensions to the Chrome Web Store",
"keywords": [
"chrome",
"publish",
"webstore",
"store",
"extension",
"deploy",
"update",
"upload",
"cli"
],
"repository": "fregante/chrome-webstore-upload-cli",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Andrew Levine",
"contributors": [
"Federico Brigante <me@fregante.com> (https://fregante.com)"
],
"type": "module",
"bin": {
"chrome-webstore-upload": "cli.js"
},
"scripts": {
"test": "xo && ava"
},
"xo": {
"ignore": [
"test/fixtures"
],
"rules": {
"object-curly-spacing": [
"error",
"always"
]
},
"space": 4
},
"ava": {
"files": [
"!test/fixtures/**",
"!test/helpers/**"
]
},
"dependencies": {
"chrome-webstore-upload": "^3.1.0",
"junk": "^4.0.1",
"meow": "^12.1.1",
"recursive-readdir": "^2.2.3",
"yazl": "^2.5.1"
},
"devDependencies": {
"ava": "^6.0.1",
"execa": "^8.0.1",
"is-stream": "^3.0.0",
"mock-fs": "^5.2.0",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18"
}
}