-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "repo-zoek",
"version": "1.0.0",
"description": "",
"license": "Apache-2.0",
"author": "Joachim Bargsten <jw@bargsten.org> (https://bargsten.org/)",
"main": "bin/index.js",
"bin": {
"repo-zoek": "./bin/index.js"
},
"files": [
"bin"
],
"scripts": {
"build": "npm run clean && tsc --build src && chmod +x bin/index.js",
"check-ts": "tsc --noEmit",
"clean": "rm -rf bin; mkdir -p bin",
"dist": "npm run build && npm pack",
"fmt": "prettier --write .",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"prepare": "npm run build",
"pretest": "npm run lint",
"test": "cross-env NODE_OPTIONS=\"--no-warnings --experimental-vm-modules\" jest test"
},
"dependencies": {
"@octokit/core": "^3.6.0",
"chalk": "^4.1.0",
"commander": "^9.0.0",
"inquirer": "^8.2.1",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@octokit/types": "^6.34.0",
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-packagejson": "^2.2.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}