-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "cypress-ci-watcher",
"version": "1.0.4",
"description": "get cypress test report in ci and send to your slack channel",
"main": "./lib/index.js",
"bin": {
"cypress-ci-watcher": "./lib/index.js"
},
"scripts": {
"tsc": "tsc",
"cypress:run": "cypress run",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "sudo npm i -g && cypress-ci-watcher",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"refreshYarn": "rm -rf ./node_modules ./yarn.lock && yarn",
"runWatcher": "rimraf cypress/reports && ts-node src/index.ts",
"publish-package": "npm run build && npm publish"
},
"keywords": [
"cypress",
"CI/CD",
"slack"
],
"author": "jzsplk",
"license": "ISC",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.7",
"@types/ramda": "^0.26.43",
"cypress": "^4.1.0",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"nodemon": "^2.0.2",
"ramda": "^0.27.0",
"rimraf": "^3.0.2",
"slack-mock-typed": "^2.2.4",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@slack/types": "^1.3.0",
"@slack/webhook": "^5.0.2",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"commander": "^4.1.1",
"figlet": "^1.3.0",
"path": "^0.12.7",
"cypress-multi-reporters": "^1.2.4",
"mochawesome": "^5.0.0",
"mochawesome-merge": "^4.0.1",
"mocha-junit-reporter": "^1.23.3",
"mocha": "^7.1.0",
"yargs": "^15.1.0"
}
}