-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "netatmo-weather-server",
"version": "1.0.4",
"description": "Node server exposing public weather datas through a rest api",
"main": "index.js",
"bin": {
"netatmo-weather-server": "./bin/global.js"
},
"scripts": {
"test": "jasmine --config=jasmine.json",
"coverage": "nyc npm run test && nyc report --reporter=html",
"start:dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint . --ext .ts",
"build": "tsc"
},
"author": "rtrompier",
"license": "MIT",
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios-observable": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"rxjs": "^7.5.7",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.9",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"jasmine": "^4.5.0",
"jasmine-console-reporter": "^3.1.0",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.3"
}
}