-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.04 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
{
"name": "southern-company-api",
"version": "3.1.0",
"description": "A Library for pulling power usage data from Southern Company or Southern Company subcompanies",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist/",
"README.md"
],
"scripts": {
"clean": "rm -rf dist coverage",
"build": "npm run clean && tsc",
"test": "jest",
"debug": "ts-node ./tests/debug.ts",
"prepublishOnly": "npm run build"
},
"author": "John Andrew Tyler Pearson <[email protected]> (https://www.apearson.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/apearson/southern-company-api.git"
},
"license": "MIT",
"dependencies": {
"date-fns": "^4.1.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.7",
"@types/node": "^22.7.5",
"@types/node-fetch": "^2.6.8",
"babel-jest": "^29.7.0",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}