-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.27 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
{
"name": "aoc-to-markdown",
"version": "1.4.1",
"description": "Converts a given Advent of Code page to a GitHub-compatible Markdown file.",
"repository": "github:kfarnung/aoc-to-markdown",
"scripts": {
"build": "npm run compile && npm run build-chrome && npm run build-firefox",
"build-chrome": "web-ext build -n aoc-to-markdown-chrome.zip -s addon/chrome --overwrite-dest",
"build-firefox": "web-ext build -n aoc-to-markdown-firefox.zip -s addon/firefox --overwrite-dest",
"compile": "webpack && npm run genmanifest && npm run copyicons",
"copyicons": "node ./tools/copyicons.js",
"genmanifest": "node ./tools/genmanifest.js",
"lint": "eslint . && npm run compile && web-ext lint -s addon/firefox",
"lint-fix": "eslint . --fix",
"prepare": "npm run compile",
"prestart": "npm run compile",
"pretest": "npm run compile",
"start": "web-ext run -s ./addon/firefox",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run genmanifest"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.4.0",
"web-ext": "^8.2.0",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2"
}
}