-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.84 KB
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
{
"name": "csdp-report-image",
"version": "0.0.0",
"description": "CI tools client reporting a built image by calling image-report and receiving progress events",
"main": "index.js",
"repository": "git@github.com:codefresh-io/csdp-report-image.git",
"author": "saffi <saffi.hartal@codefresh.io>",
"license": "MIT",
"private": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"lint": "tsc --noEmit && eslint \"{src,tests}/**/*.ts\" --fix",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"debug": "yarn start debug",
"start:dev": "nodemon",
"start:prod": "node dist/index.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"ci-test": "yarn install && yarn test && yarn prebuild"
},
"engines": {
"node": "16.14.2"
},
"dependencies": {
"chalk": "4.1.2",
"eventsource": "^2.0.1",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unused-imports": "^1.1.2",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
}
}