-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "@progfay/github-streaks",
"version": "2.1.3",
"description": "Check GitHub streaks from CLI",
"main": "src/index.ts",
"bin": {
"ghs": "bin/ghs.js"
},
"files": [
"bin",
"dist",
"package.json"
],
"scripts": {
"test": "jest",
"prebuild": "rm -rf dist",
"build": "tsc -p ./tsconfig.json",
"prepare": "npm run build",
"lint": "eslint '**/*.ts'",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/progfay/github-streaks.git"
},
"author": "progfay",
"license": "ISC",
"bugs": {
"url": "https://github.com/progfay/github-streaks/issues"
},
"homepage": "https://github.com/progfay/github-streaks#readme",
"dependencies": {
"fast-html-parser": "^1.0.1"
},
"devDependencies": {
"@types/fast-html-parser": "1.0.2",
"@types/jest": "29.4.0",
"@types/node-fetch": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.34.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"jest": "29.4.3",
"jest-fetch-mock": "3.0.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public"
}
}