forked from mihaeu/cosmere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "cosmere",
"version": "0.14.1",
"description": "Sync your markdown files to confluence.",
"main": "dist/index.js",
"bin": {
"cosmere": "bin/cosmere"
},
"engines": {
"node": ">=8"
},
"engineStrict": true,
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mihaeu/cosmere.git"
},
"scripts": {
"start": "npm run watch",
"build": "tsc",
"watch": "tsc --watch",
"fix": "prettier --write src/*.ts",
"release": "tsc && np --help",
"test": "jest"
},
"keywords": [
"confluence",
"sync confluence",
"update page confluence",
"update confluence",
"readme to confluence",
"page confluence",
"convert markdown",
"markdown",
"markdown wiki"
],
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"testMatch": [
"**/tests/**/*.test.ts"
],
"collectCoverageFrom": [
"**/*.ts"
]
},
"authors": [
"Michael Haeuslmann <[email protected]> (https://github.com/mihaeu)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mihaeu/cosmere/issues"
},
"homepage": "https://mihaeu.github.io/cosmere/",
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/marked": "^0.7.1",
"@types/node": "^12.12.7",
"@types/signale": "^1.2.1",
"jest": "^26.6.3",
"np": "^7.4.0",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"typescript": "^3.7.2"
},
"dependencies": {
"axios": "^0.21.1",
"axios-file": "^1.0.16",
"docopt": "^0.6.2",
"inquirer": "6.2.1",
"marked": "^0.3.2",
"signale": "^1.4.0"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"printWidth": 120
}
}