-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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": "@poviolabs/slack-notify-cli",
"version": "2.0.1",
"packageManager": "[email protected]",
"bin": "./dist/sh.js",
"scripts": {
"build": "yarn clean && npm version patch --no-git-tag-version && yarn run build:cli",
"build:cli": "tsc -p ./tsconfig.json && chmod +x ./dist/sh.js",
"clean": "node tools/cleanup",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"test:cli": "./dist/sh.js --pwd ./test --stage test",
"test:ts-node:cli": "ts-node -r tsconfig-paths/register ./src/sh.ts --pwd ./test --stage test",
"lint": "eslint --fix"
},
"files": [
"dist"
],
"keywords": [
"povio",
"node",
"config",
"yaml",
"yargs",
"slack"
],
"homepage": "https://github.com/poviolabs/slack-notify-cli",
"bugs": "https://github.com/poviolabs/slack-notify-cli/issues",
"repository": {
"url": "https://github.com/poviolabs/slack-notify-cli",
"type": "git"
},
"contributors": [
"Marko Zabreznik <[email protected]>"
],
"dependencies": {
"@slack/web-api": "^6.7.2",
"chalk": "^4.1.2",
"node-stage": "poviolabs/node-stage#v2",
"prompt-sync": "^4.2.0",
"simple-git": "^3.9.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@jest/types": "^28.1.1",
"@swc/core": "^1.2.204",
"@swc/jest": "^0.2.21",
"@types/eslint": "^8.4.3",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.41",
"@types/prettier": "^2.6.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "4.7.4"
},
"engines": {
"node": ">= 14",
"yarn": ">= 3.2",
"npm": ">= 8"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"verbose": true,
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
}
}