-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "md-link-extractor",
"version": "1.1.1",
"description": "extract all the links from markdown files",
"main": "src/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"prepublishOnly": "npm i && npm run lint && npm run test",
"test": "mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meghoshpritam/md-link-extractor.git"
},
"keywords": [
"md-link-extractor",
"link-extractor",
"md-link",
"markdown-link"
],
"author": "meghoshpritam",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/meghoshpritam/md-link-extractor/issues"
},
"homepage": "https://github.com/meghoshpritam/md-link-extractor#readme",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.4.0",
"prettier": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run test"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
}
}