-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "my_fibonacci",
"version": "0.0.0",
"description": "A sample Node.js project",
"keywords": [
"sample",
"fibonacci"
],
"homepage": "https://github.com/threeal/nodejs-starter#readme",
"bugs": {
"url": "https://github.com/threeal/nodejs-starter/issues",
"email": "alfi.maulana.f@gmail.com"
},
"repository": "github:threeal/nodejs-starter",
"license": "Unlicense",
"author": "Alfi Maulana <alfi.maulana.f@gmail.com>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write --cache .",
"lint": "eslint",
"prepack": "tsc",
"test": "jest"
},
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"packageManager": "yarn@4.5.3"
}