-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
125 lines (125 loc) · 3.69 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "envoy-node",
"version": "2.0.0",
"description": "",
"keywords": [],
"main": "dist/envoy-node.umd.js",
"module": "dist/envoy-node.es5.js",
"typings": "dist/types/envoy-node.d.ts",
"files": [
"dist"
],
"author": "Yingyu Cheng <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Tubitv/envoy-node.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"download-envoy": "if [ ! -f ./node_modules/.bin/envoy ]; then wget https://s3-us-west-1.amazonaws.com/tubi-public-binaries/envoy/v1.13.1/envoy -O node_modules/.bin/envoy && chmod +x node_modules/.bin/envoy; fi",
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts' 'types/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc && tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts && typedoc --out dist/docs --target es6 --theme minimal --mode file src",
"start": "tsc -w & rollup -c rollup.config.ts -w",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "test/[\\w-\\.]+\\.test\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true,
"testEnvironment": "node"
},
"devDependencies": {
"@grpc/proto-loader": "^0.5.4",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.9",
"@types/node-fetch": "^2.5.7",
"@types/protobufjs": "^6.0.0",
"@types/request": "^2.48.5",
"colors": "^1.4.0",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"lodash.camelcase": "^4.3.0",
"prettier": "^2.0.5",
"prompt": "^1.0.0",
"replace-in-file": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.12.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"semantic-release": "^17.0.8",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.7",
"typedoc-plugin-internal-external": "^2.1.1",
"typescript": "^3.9.3",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"async_hooks": "^1.0.0",
"@grpc/grpc-js": "^1.8.0",
"node-fetch": "^2.6.0",
"request": "^2.88.2"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged",
"pre-push": "npm run test:prod && npm run build"
}
}
}