-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
{
"name": "flair-api-ts",
"version": "0.0.0-development",
"description": "A ts-node implementation of the Flair Smart Vent API",
"author": "bassrock",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test:ci": "npm test",
"test:watch": "npm test -- --watchAll",
"test": "jest",
"build": "rm -rf dist && tsc",
"lint": "eslint src/**.ts --max-warnings=0",
"lint:fix": "eslint --fix src/**.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/bassrock/node-flair-api-ts"
},
"bugs": {
"url": "https://github.com/bassrock/node-flair-api-ts/issues"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"axios": "^1.2.2",
"moment": "^2.29.1"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/es6-promise": "3.3.0",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"chai": "4.3.7",
"eslint": "8.31.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.3.1",
"nock": "13.2.9",
"nock-record": "0.3.9",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typedoc": "0.23.23",
"typescript": "4.9.4"
},
"license": "MIT"
}