-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 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": "s2hms",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/indrajaala/s2hms.git"
},
"type": "module",
"description": "convert seconds to HMS (or) to hours, minutes, seconds explicitly.",
"author": "indrajaala",
"license": "MIT",
"keywords": [
"convert",
"seconds",
"hours",
"minutes",
"duration",
"hms",
"time",
"seconds to hours",
"seconds to minutes",
"seconds to hms"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"files": [
"dist"
],
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"devDependencies": {
"@vitest/coverage-c8": "^0.24.3",
"@vitest/ui": "^0.24.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.6.6",
"vitest": "^0.24.3"
}
}