-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "osservaprezzi-carburanti-node",
"version": "1.1.0",
"description": "Osservaprezzi carburanti async/await API wrapper. Developed in TypeScript, typed interfaces for all API responses.",
"main": "lib/index.js",
"homepage": "https://pater999.it/osservaprezzi-carburanti-node/",
"repository": {
"type": "git",
"url": "git@github.com:Pater999/osservaprezzi-carburanti-node.git"
},
"bugs": {
"url": "https://github.com/telegraf/telegraf/issues"
},
"files": [
"lib/",
"src/",
"!lib/**/*.map",
"!lib/tsconfig.tsbuildinfo",
"!docs/"
],
"author": "Pater999 <39135429+Pater999@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"prepare": "npm run --silent build",
"build": "tsc --build",
"build:docs": "typedoc src/index.ts",
"test": "jest test/*",
"lint": "eslint .",
"checks": "npm test && npm run lint",
"refresh": "npm run clean && npm ci",
"clean": "git clean -fX .eslintcache coverage/ lib/ typings/"
},
"engines": {
"node": ">= 12.22.12"
},
"types": "lib/index.d.ts",
"keywords": [
"carburanti",
"italia",
"prezzi carburanti api",
"wrapper prezzi carburanti",
"api prezzi benzina",
"prezzi benzina node"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.15",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.27.2",
"http-status-codes": "^2.2.0"
}
}