-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"private": true,
"description": "Zabbix API Client for JavaScript/TypeScript Deno runtime.",
"keywords": [
"zabbix",
"deno",
"typescript"
],
"homepage": "https://github.com/sumitgoelpw/deno-zabbix#readme",
"bugs": {
"url": "https://github.com/sumitgoelpw/deno-zabbix/issues"
},
"license": "MIT",
"author": "Sumit Goel",
"main": "mod.ts",
"directories": {
"lib": "src",
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumitgoelpw/deno-zabbix.git"
},
"scripts": {
"deno-fmt": "deno fmt --check --unstable --ignore=node_modules",
"deno-lint": "deno lint --unstable --ignore=node_modules || true",
"eslint": "eslint . --ext .ts",
"lint": "npm run deno-lint && npm run eslint",
"pretest": "npm run deno-fmt && npm run lint",
"test": "echo #TODO",
"up": "npm-check -y -E && rm -rf ./node_modules package-lock.json && npm i"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"eslint": "7.15.0",
"npm-check": "5.9.2",
"typescript": "4.1.3"
}
}