-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1014 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1014 Bytes
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
{
"name": "@sabier/ms",
"version": "1.0.0",
"description": "Milliseconds conversion tool",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"author": "sabier",
"repository": {
"type": "git",
"url": "https://github.com/shikr/ms"
},
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"scripts": {
"lint": "eslint .",
"format": "prettier src/** --write",
"build": "tsc",
"test": "node index.test.js",
"prepublishOnly": "yarn format && yarn lint && yarn build"
},
"packageManager": "yarn@1.22.19",
"keywords": [
"ms",
"milliseconds",
"seconds",
"conversion"
]
}