-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 907 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": "@knutkirkhorn/week-number",
"version": "2.1.1",
"description": "Get the ISO 8601 week number of a date",
"scripts": {
"test": "ava && tsd",
"lint": "eslint ."
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/knutkirkhorn/week-number.git"
},
"keywords": [
"week",
"number"
],
"author": "Knut Kirkhorn",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14.19"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/knutkirkhorn/week-number/issues"
},
"homepage": "https://github.com/knutkirkhorn/week-number#readme",
"devDependencies": {
"ava": "^5.0.1",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^46.0.0",
"tsd": "^0.26.0"
}
}