-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "seconds-formater",
"version": "2.0.3",
"description": "Representing seconds in pretty time format",
"main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"keywords": [
"seconds",
"format",
"convert",
"time",
"formatter"
],
"author": {
"name": "Bojan Mazej",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "pnpm clear & vite build",
"clear": "rimraf ./dist *.tgz",
"dev": "npx ts-node -T src/index.ts",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/bojangles-m/seconds-formater"
},
"bugs": {
"url": "https://github.com/bojangles-m/seconds-formater/issues"
},
"homepage": "https://github.com/bojangles-m/seconds-formater#readme",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"jest": "^29.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1"
}
}