-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.96 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
79
80
81
{
"name": "keepmeup-client",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"pre-commit": "npm run build && npm test && npm run lint && npm audit",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"lint": "standardx './src/**/*.ts' './test/**/*.ts'",
"releaseit": "release-it --ci",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nordluf/keepmeup-client.git"
},
"keywords": [],
"author": "Evgeny Kruglov",
"license": "JSON",
"bugs": {
"url": "https://github.com/nordluf/keepmeup-client/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/nordluf/keepmeup-client#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@release-it/bumper": "^5.0.0",
"@release-it/conventional-changelog": "^7.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^12.12.43",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"conventional-changelog-angular": "^7.0.0",
"husky": "^4.2.5",
"jest": "^26.0.0",
"release-it": "^16.0.0",
"standardx": "^7.0.0",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"env": [
"jest"
]
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "npm run pre-commit"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}