-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "@kenchan0130/markdown-to-atlassian-wiki-markup",
"version": "6.0.0",
"description": "Convert markdown to atlassian wiki markup",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "run-s clean build:tsc",
"build:tsc": "tsc",
"lint": "eslint --max-warnings=0 src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"test": "run-s clean test:jest",
"test:jest": "jest",
"preversion": "[ \"$(git symbolic-ref --short HEAD)\" != master ] || [ -n \"$(git status --porcelain)\" ] && exit 1 || true",
"postversion": "git push origin $(git describe --abbrev=0 --tags) && git push origin master"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenchan0130/markdown-to-atlassian-wiki-markup.git"
},
"author": "Tadayuki Onishi <tt.tanishi100@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenchan0130/markdown-to-atlassian-wiki-markup/issues"
},
"homepage": "https://github.com/kenchan0130/markdown-to-atlassian-wiki-markup#readme",
"keywords": [
"Atlassian",
"Confluence",
"JIRA",
"Markdown",
"Wiki markup"
],
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"peerDependencies": {
"@types/marked": "latest",
"marked": "latest"
},
"devDependencies": {
"@types/array-unique": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-prettier": "latest",
"jest": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"rimraf": "latest",
"ts-jest": "latest",
"typescript": "latest"
},
"jest": {
"preset": "ts-jest"
}
}