-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 993 Bytes
/
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
{
"name": "inpe-weather-api",
"version": "2.0.0",
"description": "NodeJS interface to INPE Weather Forecast API",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"author": "Luiz Fernando",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --forceExit",
"prebuild": "rimraf ./build",
"build": "tsc",
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/lfernando-silva/inpe-weather-api"
},
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/jest": "^29.5.3",
"@types/xml2json": "^0.11.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}