forked from imranbarbhuiya/duration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@imranbarbhuiya/duration",
"version": "5.1.7",
"description": "A small and fast time utility which makes working with time, duration, date super easy. It contains a number of useful small utility methods to work with time and date.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"sideEffects": false,
"license": "MIT",
"author": "imranbarbhuiya",
"scripts": {
"docs": "typedoc",
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write '**/*.{ts,mjs,json,md}'",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "yarn build",
"typecheck": "tsc -p tsconfig.eslint.json",
"bump": "cliff-jumper"
},
"keywords": [
"ms",
"time",
"format",
"milliseconds",
"convert",
"duration"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@favware/cliff-jumper": "^1.10.0",
"@vitest/coverage-c8": "^0.29.1",
"eslint": "^8.34.0",
"eslint-config-mahir": "^0.0.23",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"typedoc": "^0.23.25",
"typescript": "^4.9.5",
"vitest": "^0.29.1"
},
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/duration.git"
},
"bugs": {
"url": "https://github.com/imranbarbhuiya/duration/issues"
},
"homepage": "https://duration.js.org/",
"packageManager": "[email protected]"
}