-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.06 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
83
84
85
{
"name": "cosmere",
"version": "0.17.2",
"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 **/*.{ts,md,json}",
"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": {
"collectCoverage": true,
"testMatch": [
"**/tests/**/*.test.ts"
],
"collectCoverageFrom": [
"**/*.ts"
],
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "@swc/jest"
}
},
"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": {
"@swc/core": "^1.3.18",
"@swc/jest": "^0.2.23",
"@types/inquirer": "^8.2.5",
"@types/jest": "^29.2.3",
"@types/marked": "^4.0.7",
"@types/signale": "^1.2.1",
"jest": "^29.3.1",
"np": "^7.4.0",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.1.3",
"docopt": "^0.6.2",
"inquirer": "^8.2.5",
"marked": "^4.2.2",
"signale": "^1.4.0"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"printWidth": 120
}
}