-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.83 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
{
"name": "@strdr4605/jump2header",
"version": "0.0.0-development",
"description": "Add \"jump to\" links for markdown headers",
"publishConfig": {
"access": "public"
},
"main": "lib/cli.js",
"types": "lib/cli.d.ts",
"files": [
"lib/**/*"
],
"bin": {
"jump2header": "lib/cli.js"
},
"scripts": {
"test": "jest",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts}' --quiet --fix",
"pre-commit": "tsc --noEmit && lint-staged && npm test",
"build": "tsc",
"build:watch": "tsc -w",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strdr4605/jump2header.git"
},
"keywords": [
"md",
"markdown",
"github",
"global",
"documentation",
"readme",
"parser",
"cli",
"util"
],
"author": "Dragoș Străinu",
"license": "MIT",
"bugs": {
"url": "https://github.com/strdr4605/jump2header/issues"
},
"homepage": "https://github.com/strdr4605/jump2header#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/jest-in-case": "^1.0.1",
"@types/node": "^13.9.5",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"jest-in-case": "^1.0.2",
"lint-staged": "^10.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"semantic-release": "^17.0.4",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"emoji-regex": "^8.0.0",
"yargs": "^15.3.1"
}
}