-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "worldtimeapi-lib",
"version": "0.2.1",
"description": "Basic library for calling http://worldtimeapi.com programatically.",
"main": "dist/index.js",
"scripts": {
"test": "rimraf ./dist && tsc && npx mocha",
"lint": "eslint src --cache && tsc --noEmit --pretty",
"link": "cd dist && npm link && cd ..",
"build": "rimraf ./dist && tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/radekBednarik/worldtimeapi-lib.git"
},
"homepage": "https://github.com/radekBednarik/worldtimeapi-lib",
"keywords": [
"worldtimeapi",
"api",
"typescript",
"world",
"time"
],
"author": "Radek Bednarik<radek.bednarik@tesena.com",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true,
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
}
}