-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.01 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
{
"name": "upload-to-danbooru",
"version": "3.4.0",
"description": "Add a context menu option for images to upload to Danbooru.",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"coverage": "c8 mocha",
"build": "node build.js",
"buildChrome": "node build.js --chrome"
},
"exports": {
"./*": "./src/*"
},
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^9.5.0",
"mocha": "^10.4.0",
"should": "^13.2.3",
"web-ext": "^8.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZipFile/upload-to-danbooru.git"
},
"keywords": [
"danbooru",
"webextension"
],
"author": "ZipFile",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ZipFile/upload-to-danbooru/issues"
},
"webExt": {
"sourceDir": "dist"
},
"c8": {
"all": true,
"exclude": [
"dist",
"src/contentScripts"
]
},
"homepage": "https://github.com/ZipFile/upload-to-danbooru#readme"
}