-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.66 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": "@bfinster/confluence2md",
"version": "1.0.0",
"author": "Bryan Finster",
"license": "MIT",
"type": "module",
"description": "Convert Confluence pages to markdown for Hugo",
"keywords": [
"Confluence",
"Markdown",
"Confluence to Markdown"
],
"main": "index.js",
"bin": {
"confluence2md": "./index.js"
},
"repository": "[email protected]:bdfinst/confluence2md.git",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"commander": "^9.1.0",
"ncp": "^2.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"concurrently": "^7.0.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-no-floating-promise": "1.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "5.1.0",
"jest": "^27.5.1"
},
"scripts": {
"start": "node --es-module-specifier-resolution=node ./index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --coverage --config ./jest.config.json",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.json --watch",
"format:fix": "prettier --write '**/*.{js,yaml,json,md}'",
"format": "prettier --check '**/*.{js,yaml,json,md}'",
"lint:fix": "eslint --fix --cache --ext .js .",
"lint": "concurrently 'npm run lint:fix' 'npm run format:fix'",
"lint:check": "concurrently 'eslint --ext .js .' 'npm run format'",
"postinstall": "npm link"
}
}