-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.63 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": "ebi",
"version": "0.0.0",
"description": "A command line tool that searches files within GitHub repositories",
"bin": "./bin/ebi.js",
"main": "./lib/ebi/index.js",
"scripts": {
"lint": "eslint *.js src/ lib/ test/",
"lint-fix": "eslint --fix *.js src/ lib/ test/",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"test": "npm run lint && npm run unit-test",
"unit-test": "jest",
"unit-test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/ebi.git"
},
"contributors": [
{
"name": "Jennifer Johnson",
"email": "[email protected]"
},
{
"name": "Jennifer Shepherd",
"email": "[email protected]"
},
{
"name": "Tak Tran",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Financial-Times/ebi/issues"
},
"homepage": "https://github.com/Financial-Times/ebi#readme",
"engines": {
"node": "16.x || 18.x",
"npm": "7.x || 8.x || 9.x"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@octokit/plugin-throttling": "^3.3.4",
"@octokit/rest": "^18.0.10",
"lodash": "^4.17.20",
"nock": "^13.0.5",
"update-notifier": "^5.0.1",
"yargs": "^16.1.1"
},
"devDependencies": {
"check-engine": "^1.10.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-no-only-tests": "^2.1.0",
"husky": "^2.0.0",
"jest": "^26.6.3",
"prettier": "1.17.0"
},
"volta": {
"node": "18.16.0"
}
}