-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "forecast-solar-ts",
"version": "1.1.0",
"description": "Typescript implementation for using forecast.solar",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"forecast-solar",
"forecast",
"solar",
"api",
"typescript"
],
"repository": "https://github.com/CommanderRedYT/forecast-solar-ts.git",
"author": "CommanderRedYT <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsup --splitting",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests",
"start": "tsup dev",
"prepublish": "npm run build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-mock-server": "^0.1.0",
"jsonc": "^2.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"moment": "^2.30.1",
"moment-timezone": "^0.5.45"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}