This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
{
"name": "currentyear-api-wrapper",
"author": "Alejandro López",
"description": "Node wrapper for Adam Greenough's CurrentYear API",
"license": "MIT",
"main": "dist/lib/index.js",
"private": false,
"unpkg": "dist/lib/index.js",
"version": "0.1.0",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"type": "module",
"sideEffects": false,
"scripts": {
"build:demo": "cd demo && npm run build",
"build:docs": "typedoc src --excludePrivate --out dist/docs",
"build:lib": "tsc",
"build": "npm run build:lib && npm run build:demo && npm run build:docs",
"lint": "eslint . --ext .ts",
"prepublishOnly": "npm run build",
"start": "cd demo && npm start",
"test:coverage": "jest --coverage && cat coverage/lcov.info | coveralls",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.5",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"coveralls": "^3.1.1",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"timezones-list": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arlopezg/currentyear-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/arlopezg/currentyear-api-wrapper/issues"
},
"homepage": "https://current-year-api.addy.codes/",
"keywords": [
"currentyear",
"node",
"satire",
"typedoc"
]
}