forked from marcotaubmann/timediff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "@marc-maniac/timediff",
"version": "1.0.0",
"description": "Calculate a time difference in several time units.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "ts-mocha -p ./tsconfig.json test/**/*.spec.ts",
"build": "tsc -p tsconfig.build.json"
},
"keywords": [
"time",
"dayjs",
"date",
"timediff",
"diff"
],
"homepage": "https://github.com/marc-at-brightnight/timediff",
"bugs": {
"url": "https://github.com/marc-at-brightnight/timediff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marc-at-brightnight/timediff.git"
},
"dependencies": {
"dayjs": "^1.11.13"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/mocha": "^10.0.6",
"conventional-changelog-conventionalcommits": "^8.0.0",
"expect": "^29.7.0",
"jasmine-node": "^1.16.0",
"prettier": "^3.2.5",
"ts-mocha": "^10.0.0",
"semantic-release": "^24.1.2",
"typescript": "^5.4.5"
},
"directories": {
"test": "test"
}
}