-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.72 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
{
"name": "tibber-httpclient",
"version": "3.11.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Tibber",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .js,.ts,.json",
"test": "jest --runInBand",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build:types": "tsc --declaration && yarn copy-typedefs",
"build": "yarn clean && yarn lint && yarn build:types && esbuild src/index.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/index.js",
"build:dev": "yarn clean && yarn build:types && esbuild src/index.ts --bundle --sourcemap=external --outfile=dist/index.js",
"build:watch": "esbuild src/index.ts --bundle --watch --sourcemap=external --outfile=dist/index.js",
"copy-typedefs": "copyfiles -u 2 ./dist/src/**/*.d.ts ./dist --verbose",
"clean": "del-cli ./dist"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"copyfiles": "^2.4.1",
"del-cli": "^5.0.0",
"esbuild": "^0.18.12",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"jest": "^29.6.1",
"jest-each": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.3.1",
"typescript": "^5.1.6"
},
"dependencies": {
"fast-copy": "^3.0.1",
"got": "^12.6.0",
"node-cache": "^5.1.2"
}
}