-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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": "streaker",
"description": "GitHub contribution streak & stat tracking CLI app",
"version": "2.0.2",
"author": "Jamie Weavis",
"main": "index.js",
"homepage": "https://github.com/jamieweavis/streaker-cli#readme",
"license": "MIT",
"repository": "https://github.com/jamieweavis/streaker-cli.git",
"bin": {
"streaker": "build/app.js"
},
"bugs": {
"url": "https://github.com/jamieweavis/streaker-cli/issues"
},
"keywords": [
"cli",
"contribution",
"contribution-graph",
"contributions",
"github",
"node",
"nodejs",
"streak",
"streaker"
],
"scripts": {
"dev": "ts-node-dev --respawn ./src/app.ts",
"build": "rimraf ./build && tsc",
"build:watch": "npm run build -- --watch",
"test": "jest --passWithNoTests",
"test:watch": "npm run test -- --watch",
"lint": "rome check src",
"lint:fix": "npm run lint -- --apply-suggested",
"format": "rome format src",
"format:write": "npm run format -- --write",
"prepare": "husky install"
},
"dependencies": {
"colorette": "^2.0.19",
"contribution": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "^29.4.1",
"@types/node": "18.15.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"rimraf": "^4.4.0",
"rome": "^11.0.0",
"semantic-release": "20.1.1",
"ts-jest": "29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "4.9.5"
}
}