-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
package.json
67 lines (67 loc) · 1.91 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
{
"description": "Frontend webserver package for Kubeflow Pipelines",
"main": "server.js",
"dependencies": {
"@google-cloud/storage": "^2.5.0",
"@kubernetes/client-node": "^0.8.2",
"axios": ">=0.19.0",
"crypto-js": "^3.1.8",
"express": "^4.16.3",
"gunzip-maybe": "^1.4.1",
"http-proxy-middleware": "^0.18.0",
"lodash": ">=4.17.13",
"minio": "^7.0.0",
"node-fetch": "^2.1.2",
"peek-stream": "^1.1.3",
"tar-stream": "^2.1.0"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/express": "^4.11.1",
"@types/jest": "^24.9.1",
"@types/minio": "^7.0.3",
"@types/node": "^10.17.11",
"@types/node-fetch": "^2.1.2",
"@types/supertest": "^2.0.8",
"@types/tar": "^4.0.3",
"@types/tar-stream": "^1.6.1",
"jest": "^25.1.0",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"tslint": "^5.20.1",
"typescript": "^3.6.4"
},
"scripts": {
"build": "tsc --lib es2015 --outDir ./dist --typeRoots ./node_modules/@types server.ts",
"format": "npx prettier --write './**/*.{ts,tsx}'",
"format:check": "npx prettier --check './**/*.{ts,tsx}' || node ../scripts/check-format-error-info.js",
"lint": "npx tslint -c tslint.json -p tsconfig.json",
"test": "npx jest",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run format:check && npm run lint && npm run test:coverage"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": false,
"tsConfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"/node_modules/",
"dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kubeflow/pipelines.git"
},
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/kubeflow/pipelines/issues"
},
"homepage": "https://github.com/kubeflow/pipelines#readme"
}