-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.52 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
47
48
49
50
51
52
53
{
"name": "@ansanloms/honkit-plugin-uml",
"version": "0.0.8",
"description": "PlantUML Plugin for HonKit.",
"main": "./lib/index.js",
"scripts": {
"build": "babel ./src/ --out-dir ./lib/ --source-maps",
"test": "jest",
"lint": "run-s --continue-on-error lint:*",
"lint:prettier": "prettier --loglevel warn --check --ignore-path .gitignore .",
"lint:eslint": "eslint --ignore-path .gitignore .",
"fix": "run-s --continue-on-error fix:*",
"fix:prettier": "prettier --loglevel warn --write --ignore-path .gitignore .",
"fix:eslint": "eslint --fix --ignore-path .gitignore .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ansanloms/honkit-plugin-uml.git"
},
"author": "ansanloms",
"license": "MIT",
"bugs": {
"url": "https://github.com/ansanloms/honkit-plugin-uml/issues"
},
"homepage": "https://github.com/ansanloms/honkit-plugin-uml#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"honkit": ">=3.5.2"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"node-plantuml": "^0.9.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-jest": "^27.2.5",
"eslint": "^8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
},
"files": [
"lib/"
]
}