-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "fake-committer",
"version": "1.0.8",
"main": "./dist/index.js",
"bin": "./dist/src/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext=.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config jest.config.js"
},
"author": "Gustavo Henrique <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/un-versed/fake-committer"
},
"description": "FakeCommitter is a tool for those who want to be a GITHUB POPSTAR WITH A LOT OF CONTRIBUTIONS DAILY! 💫⭐",
"dependencies": {
"axios": "^0.24.0",
"chalk": "4.1.2",
"luxon": "^2.3.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/luxon": "^2.0.9",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4"
}
}