-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.62 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.62 KB
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
{
"name": "bb-ultra-extended",
"version": "1.1.0",
"description": "Multitool browser add-on for Blackboard Learn Ultra",
"author": "Douwe Somers",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/DraakjeYoblama/bb-ultra-extended.git"
},
"bugs": {
"url": "https://github.com/DraakjeYoblama/bb-ultra-extended/issues"
},
"homepage": "https://github.com/DraakjeYoblama/bb-ultra-extended",
"scripts": {
"firefox:copy": "npx @11ty/eleventy --config=.eleventy.firefox.js",
"firefox:cleancopy": "npx del-cli _dist/firefox && npx @11ty/eleventy --config=.eleventy.firefox.js",
"firefox:build": "npm run firefox:cleancopy && npm run firefox:buildcurrent",
"firefox:buildcurrent": "npx web-ext build --source-dir _dist/firefox --artifacts-dir _dist --filename={name}-firefox-{version}.xpi --overwrite-dest",
"firefox:lint": "npx web-ext lint --source-dir _dist/firefox",
"chrome:copy": "npx @11ty/eleventy --config=.eleventy.chrome.js",
"chrome:cleancopy": "npx del-cli _dist/chrome && npx @11ty/eleventy --config=.eleventy.chrome.js",
"chrome:build": "npm run chrome:cleancopy && npm run chrome:buildcurrent",
"chrome:buildcurrent": "npx web-ext build --source-dir _dist/chrome --artifacts-dir _dist --filename={name}-chrome-{version}.zip --overwrite-dest",
"chrome:lint": "npx web-ext lint --source-dir _dist/chrome",
"clean": "npx del-cli _dist"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"web-ext": "^8.5.0",
"del-cli": "^7.0.0"
}
}