-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 923 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
{
"name": "ms-prettify",
"version": "1.5.0",
"description": "An module to easily convert milliseconds to human readable time and vice versa",
"main": "dist/index.js",
"types": "dist/",
"scripts": {
"test": "echo \"no tests available\"",
"build": "npx tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KartikeSingh/ms-prettify.git"
},
"keywords": [
"ms",
"prettify",
"convert",
"time"
],
"author": "shisui",
"license": "MIT",
"bugs": {
"url": "https://github.com/KartikeSingh/ms-prettify/issues"
},
"homepage": "https://github.com/KartikeSingh/ms-prettify#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^4.7.4",
"prettier": "^2.6.2"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"htmlWhitespaceSensitivity": "ignore"
}
}