forked from bisand/myenergi-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "myenergi-api",
"version": "2.4.0",
"description": "NodeJS implementation of MyEnergi API for controlling Zappi, Eddi and other MyEnergi products",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --runInBand --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "npx eslint -c .eslintrc.json '**/*.ts'",
"prepare": "tsc",
"preversion": "npm test",
"version": "",
"postversion": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bisand/myenergi-api.git"
},
"keywords": [
"myenergi",
"zappi",
"eddi",
"api"
],
"author": "André Biseth",
"license": "MIT",
"bugs": {
"url": "https://github.com/bisand/myenergi-api/issues"
},
"homepage": "https://github.com/bisand/myenergi-api#readme",
"dependencies": {},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@jest/test-sequencer": "^28.1.3",
"@types/jest": "^28.1.3",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"dotenv": "^16.0.3",
"jest": "^28.1.3",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"eslint": "^8.24.0"
}
}