-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 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
{
"name": "rescribe",
"version": "0.0.1",
"description": "search through code easily",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.19",
"husky": "^4.3.6",
"npm-check-updates": "^10.2.5"
},
"husky": {
"hooks": {
"post-checkout": "echo $HUSKY_GIT_STDIN | scripts/lfs-hooks/post-checkout $HUSKY_GIT_PARAMS",
"post-commit": "echo $HUSKY_GIT_STDIN | scripts/lfs-hooks/post-commit $HUSKY_GIT_PARAMS",
"post-merge": "echo $HUSKY_GIT_STDIN | scripts/lfs-hooks/post-merge $HUSKY_GIT_PARAMS",
"pre-push": "echo $HUSKY_GIT_STDIN | scripts/lfs-hooks/pre-push $HUSKY_GIT_PARAMS",
"pre-commit": "./precommit.sh"
}
},
"scripts": {
"preinstall": "rm -rf .git/hooks && echo \"removed git hooks to allow for husky to install correctly\"",
"lfs-fetch": "git lfs fetch --all && git lfs pull",
"watch": "cd vscode && npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rescribe-dev/rescribe.git"
},
"keywords": [
"search"
],
"author": "reScribe",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/rescribe-dev/rescribe/issues"
},
"homepage": "https://github.com/rescribe-dev/rescribe#readme"
}