-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "@natereprogle/hawk-js",
"version": "0.1.0",
"description": "A utility for interacting with the UtilityHawk/AquaHawk API, enabling you to query your electric/water/gas usage whenever, wherever, programmatically.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test:unit": "jest test/unit",
"test:functional": "jest test/functional",
"build": "tsup",
"lint": "eslint",
"release": "tsup && changeset publish"
},
"keywords": [
"utilityhawk",
"aquahawk",
"hawk"
],
"repository": {
"type": "git",
"url": "https://github.com/natereprogle/hawk-js.git"
},
"bugs": {
"url": "https://github.com/natereprogle/hawk-js/issues"
},
"homepage": "https://github.com/natereprogle/hawk-js#readme",
"author": "Nate Reprogle <nate@reprogle.org> (https://reprogle.org)",
"license": "MPL-2.0",
"devDependencies": {
"@changesets/cli": "^2.27.6",
"@dotenvx/dotenvx": "^1.3.2",
"@eslint/js": "^9.6.0",
"@microsoft/api-extractor": "^7.47.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/eslint-plugin-ts": "^2.3.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^9.6.0",
"fs-extra": "^11.2.0",
"globals": "^15.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-mockito": "^2.6.1",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
},
"dependencies": {
"axios": "^1.7.2"
}
}