-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 894 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": "delta-year",
"description": "The function returns the difference of two dates in the form of a decimal year",
"version": "1.0.2",
"license": "MIT",
"author": {
"name": "Vladislav Sayapin"
},
"homepage": "/~https://github.com/v-sayapin/delta-year",
"repository": {
"type": "git",
"url": "git://github.com/v-sayapin/delta-year.git"
},
"bugs": {
"url": "/~https://github.com/v-sayapin/delta-year/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"packageManager": "yarn@3.6.4",
"scripts": {
"clean": "rm -rf lib",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn clean && yarn tsc",
"prepack": "yarn build"
},
"devDependencies": {
"typescript": "^5.2.2"
},
"keywords": [
"delta",
"difference",
"decimal",
"float",
"date",
"time",
"year"
]
}