-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.66 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
78
79
80
81
82
83
84
{
"name": "@hack4impact/logger",
"version": "4.0.2",
"description": "The lightweight & lightning-fast Logger Utility used by Hack4Impact Projects",
"license": "MIT",
"homepage": "https://hack4impact.github.io/logger/",
"main": "dist/index.js",
"author": {
"name": "Yash Totale"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/hack4impact/logger.git"
},
"bugs": {
"url": "https://github.com/hack4impact/logger/issues"
},
"keywords": [
"node",
"javascript",
"typescript",
"logger",
"hack4impact"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@octokit/rest": "^18.1.0",
"@types/dotenv-safe": "^8.1.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/recursive-readdir": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@vercel/ncc": "^0.27.0",
"all-contributors-cli": "^6.19.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.19.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.11",
"husky": "^5.0.9",
"jest": "^26.6.3",
"linkinator": "^2.13.6",
"lint-staged": "^10.5.4",
"markdownlint-cli": "^0.26.0",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"recursive-readdir": "^2.2.2",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"scripts": {
"preversion": "bash scripts/version/pre.sh",
"version:patch": "npm version patch -m 'v%s'",
"version:minor": "npm version minor -m 'v%s'",
"version:major": "npm version major -m 'v%s'",
"postversion": "bash scripts/version/post.sh",
"prepublishOnly": "bash scripts/publish/pre.sh",
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:gh": "npm publish --registry https://npm.pkg.github.com/",
"postpublish": "bash scripts/publish/post.sh",
"build": "bash scripts/build/index.sh",
"postbuild": "ts-node scripts/build/post.ts",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "bash scripts/test-coverage.sh",
"lint": "npx lint-check",
"lint:staged": "lint-staged",
"start": "bash scripts/start.sh",
"postinstall": "husky install",
"recreate-releases": "ts-node scripts/recreate-releases.ts",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"check-links": "bash scripts/check-links.sh"
}
}