-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1006 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1006 Bytes
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": "markdown-printer",
"version": "1.1.1",
"description": "Save web pages as Markdown files with preserved formatting",
"scripts": {
"build": "node build.js",
"build:chrome": "node build.js chrome",
"build:firefox": "node build.js firefox",
"version:patch": "npm version patch && npm run build",
"version:minor": "npm version minor && npm run build",
"version:major": "npm version major && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/levz0r/markdown-printer.git"
},
"author": "Lev Gelfenbuim",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"publish-browser-extension": "^4.0.0"
}
}