-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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": "notion-markdown",
"version": "0.0.1",
"description": "Parse the Notion page as a Markdownts-jest",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "konojunya <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"prebuild": "yarn clean",
"build": "tsc -p .",
"test": "jest",
"lint": "eslint \"src/*.ts\"",
"format": "npm-run-all -s format:*",
"format:prettier": "prettier --write \"**/*.ts\"",
"format:lint": "yarn lint --fix",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"keywords": [
"notion",
"markdown",
"parser",
"notion-markdown"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/konojunya/notion-markdown.git"
},
"homepage": "https://github.com/konojunya/notion-markdown#readme",
"bugs": {
"url": "https://github.com/konojunya/notion-markdown/issues"
},
"standard-version": {
"scripts": {
"postchangelog": "yarn format"
}
},
"jest": {
"testMatch": [
"**/test/**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
}
}