-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "gumdrop",
"version": "4.2.1",
"description": "Zero-configuration script to display Markdown documents as static HTML pages",
"author": "Márton Visnovitz <vimtaai@inf.elte.hu>",
"license": "MIT",
"repository": "github:vimtaai/gumdrop",
"module": "src/index.js",
"browser": "dist/gumdrop.min.js",
"files": [
"/src",
"/dist"
],
"scripts": {
"lint:problems": "eslint src/**/*.js",
"lint:code-style": "prettier --check src/**/*.js",
"lint": "npm run lint:problems && npm run lint:code-style",
"build:development": "esbuild src/index.js --bundle --outfile=dist/gumdrop.js",
"build:production": "esbuild src/index.js --bundle --outfile=dist/gumdrop.min.js --minify",
"build": "npm run build:development && npm run build:production",
"watch": "npm run build:development -- --watch",
"prepare": "npm run build"
},
"dependencies": {
"extramark": "0.3.2",
"js-yaml": "3.13.1",
"mustache": "3.1.0",
"prismjs": "^1.20.0"
},
"devDependencies": {
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"prettier": "^2.7.1"
}
}