-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 937 Bytes
/
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
{
"name": "@rodys/week",
"version": "1.0.4",
"description": "CLI tool to get the current ISO week number.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"bin": {
"week": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodyvansambeek/week-cli.git"
},
"keywords": [
"week",
"cli",
"weeknumber",
"isoweek"
],
"author": "Rody van Sambeek",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodyvansambeek/week-cli/issues"
},
"homepage": "https://github.com/rodyvansambeek/week-cli#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"es-main": "^1.3.0"
}
}