-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gotify",
"version": "1.1.0",
"description": "Gotify JS Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tomsquest/gotify.git"
},
"keywords": [
"gotify"
],
"author": "Thomas Queste <[email protected]> (http://www.tomsquest.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomsquest/gotify/issues"
},
"homepage": "https://github.com/tomsquest/gotify#readme",
"jest": {
"notify": true,
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 60000,
"rootDir": "src"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint --fix --cache",
"jest --bail --findRelatedTests"
]
},
"devDependencies": {
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-only-error": "1.0.2",
"eslint-plugin-radar": "0.2.1",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"nock": "13.1.0",
"np": "7.5.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"ts-node": "10.0.0",
"typescript": "4.2.4"
},
"dependencies": {
"got": "10.7.0"
},
"np": {
"releaseDraft": false
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist .eslintcache",
"check": "npm run clean && npm run build && npm run prettier && npm run lint && npm test",
"lint": "eslint --ext .ts --cache src",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prepublishOnly": "npm run check",
"prettier": "prettier --check . '!dist/**'",
"prettier:fix": "prettier --write . '!dist/**'",
"release": "np",
"test": "jest",
"test:watch": "jest --watch"
}
}