forked from jihchi/mermaid.ink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "mermaid.ink",
"version": "2.7.3",
"description": "https://mermain.ink",
"engines": {
"node": ">= 13"
},
"main": "src/index.js",
"scripts": {
"docker:build": "docker build . -t jihchi/mermaid.ink:$npm_package_version",
"docker:publish": "docker push jihchi/mermaid.ink:$npm_package_version",
"docker:run": "docker run --rm --cap-add=SYS_ADMIN -p 3000:3000 -e DEBUG=app:*,-app:pptr jihchi/mermaid.ink:$npm_package_version",
"format": "prettier --with-node-modules --write \"{src,test}/**/*.{js,html}\"",
"start": "node src/index.js",
"test": "jest",
"test:ci": "yarn test --bail --ci",
"test:watch": "yarn test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jihchi/mermaid.ink.git"
},
"author": "jihchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/jihchi/mermaid.ink/issues"
},
"homepage": "https://github.com/jihchi/mermaid.ink#readme",
"dependencies": {
"debug": "^4.3.1",
"font-awesome": "^4.7.0",
"koa": "^2.13.0",
"koa-route": "^3.2.0",
"mermaid": "^8.8.3",
"puppeteer": "^5.5.0"
},
"devDependencies": {
"jest": "^26.6.3",
"prettier": "^2.2.1",
"supertest": "^6.0.1"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}