generated from MichaelHirn/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.3 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
{
"name": "feast-client",
"version": "1.2.0",
"description": "Feast Client SDK for Node.js",
"public": true,
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"dependencies": {
"@grpc/grpc-js": "^1.1.5",
"@grpc/proto-loader": "^0.5.5",
"fs-extra": "^9.0.1",
"kafkajs": "^1.12.0",
"protobufjs": "^6.10.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@microsoft/api-documenter": "^7.8.4",
"@microsoft/api-extractor": "^7.8.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^16.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-tsdoc": "^0.2.5",
"jest": "^25.5.3",
"semantic-release": "^17.0.7",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"scripts": {
"test": "jest --c jest.config.json --maxWorkers=1",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm test -- --collectCoverage",
"build": "tsc && npm run build:proto && npm run docs",
"build:proto": "cp -r ./protos dist/",
"prepare": "npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"semantic-release": "GITHUB_TOKEN=test semantic-release --no-ci --dry-run",
"semantic-release:ci": "npm install && semantic-release",
"code:analyze": "docker run --interactive --tty --rm --env CODECLIMATE_CODE=\"$PWD\" --volume \"$PWD\":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze",
"docs:api": "api-extractor run --local",
"docs": "npm run docs:api && api-documenter markdown -i etc -o docs/markdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelHirn/feast-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MichaelHirn/feast-client/issues"
},
"homepage": "https://github.com/MichaelHirn/feast-client#readme"
}