-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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": "md-to-confluence-action",
"version": "1.6.0",
"description": "Github Action to publish your markdown documentation to Confluence",
"main": "dist/index.js",
"scripts": {
"posttest": "eslint ./lib/**/*.js",
"test": "c8 mocha",
"build": "ncc build lib/index.js --license licenses.txt --minify --source-map",
"prepare": "husky install",
"predocs:generate": " rm -rf ./docs",
"docs:generate": "jsdoc --readme ./README.md -c jsdoc.json"
},
"author": "Eleftherios Chetzakis <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=16"
},
"type": "module",
"volta": {
"node": "16.18.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"axios": "^1.6.0",
"axios-retry": "^3.4.0",
"form-data": "^4.0.0",
"markdown-it": "^13.0.1",
"plantuml-encoder": "^1.4.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"axios-mock-adapter": "^1.21.2",
"c8": "^7.12.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"clean-jsdoc-theme": "^4.2.6",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"sinon": "^14.0.1"
},
"lint-staged": {
"lib/**/*.js": [
"eslint --fix"
]
}
}