forked from BrycensRanch/import-stars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.36 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
68
69
70
71
72
73
74
75
76
77
{
"name": "import-stars",
"version": "1.0.0",
"author": "BrycensRanch",
"description": "Import another GitHub user's stars",
"homepage": "https://github.com/BrycensRanch/import-stars#readme",
"bugs": {
"url": "https://github.com/BrycensRanch/import-stars/issues",
"email": "brycengranville@outlook.com"
},
"type": "module",
"scripts": {
"build": "npx tsc --pretty",
"check-types": "tsc --noEmit --pretty",
"test": "cross-env NODE_ENV=test jest",
"clean": "rimraf dist",
"commit": "cz",
"eslint": "eslint . --ext .js,.ts",
"lint": "npm run eslint -- --fix",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"format": "prettier-eslint --write \"{,!(node_modules)/**/}*.{js,ts,.json}\"",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"bin": "dist/bin/index.js",
"keywords": [],
"license": "MIT",
"dependencies": {
"@commander-js/extra-typings": "^11.0.0",
"chalk": "^5.2.0",
"commander": "^11.0.0",
"date-fns": "^2.29.3",
"figlet": "^1.5.2",
"got": "^13.0.0",
"inquirer": "^9.0.0",
"ora": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cz-commitlint": "^17.3.0",
"@jest/globals": "^29.3.1",
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.2.4",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"commitizen": "^4.2.6",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"execa": "^8.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}