-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "firelinker",
"version": "0.0.0-development",
"description": "A tool to check for broken links in a given document",
"main": "./src/index.js",
"bin": {
"flink": "src/index.js"
},
"scripts": {
"prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"eslint": "eslint --ignore-path .gitignore .",
"precommit": "pretty-quick --staged",
"postcommit": "git update-index -g",
"eslint-fix": "eslint --fix --ignore-path .gitignore .",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zg3d/fireLinker.git"
},
"engines": {
"node": ">=12"
},
"preferGlobal": true,
"author": "Devansh Shah",
"license": "MIT",
"bugs": {
"url": "https://github.com/zg3d/fireLinker/issues"
},
"homepage": "https://github.com/zg3d/fireLinker#readme",
"dependencies": {
"abort-controller": "^3.0.0",
"chalk": "^4.1.0",
"fs": "0.0.1-security",
"node-fetch": "^2.6.1",
"ora": "^5.1.0",
"path": "^0.12.7",
"yargs": "^16.0.3"
},
"devDependencies": {
"eslint": "^7.13.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "2.1.2",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.3.0"
}
}