-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.59 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
{
"name": "@voiceflow/backend-utils",
"description": "Junk drawer of utility functions",
"version": "0.0.0",
"author": "Voiceflow",
"bugs": {
"url": "https://github.com/voiceflow/backend-utils/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/http-errors": "^1.8.2",
"@voiceflow/verror": "1.1.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"gaxios": "4.3.2",
"http-errors": "^2.0.0",
"http-status": "^1.4.2",
"jszip": "3.7.1",
"lodash": "^4.17.11",
"luxon": "^1.21.3",
"minimatch": "5.0.1",
"rate-limiter-flexible": "^2.2.2",
"sinon": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.4",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/lodash": "^4.14.168",
"@types/luxon": "^1.26.4",
"@types/mocha": "9.1.0",
"@types/node": "16.11.36",
"@types/sinon": "^10.0.0",
"@types/supertest": "^2.0.11",
"@voiceflow/commitlint-config": "2.0.0",
"@voiceflow/common": "7.27.3",
"@voiceflow/eslint-config": "6.1.0",
"@voiceflow/git-branch-check": "1.4.0",
"@voiceflow/logger": "2.2.0",
"@voiceflow/prettier-config": "1.2.1",
"@voiceflow/tsconfig": "1.4.3",
"chai-as-promised": "^7.1.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "1.4.3",
"eslint": "^7.32.0",
"eslint-output": "^3.0.1",
"express": "^4.17.3",
"express-validator": "^6.3.0",
"fixpack": "^4.0.0",
"husky": "^4.3.8",
"lint-staged": "12.2.2",
"mocha": "9.1.4",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supertest": "6.2.2",
"ts-mocha": "9.0.2",
"ttypescript": "^1.5.13",
"typescript": "~4.7.2",
"typescript-transform-paths": "3.3.1"
},
"files": [
"build/**"
],
"homepage": "https://github.com/voiceflow/backend-utils#readme",
"keywords": [
"utilities"
],
"license": "ISC",
"main": "build/index.js",
"peerDependencies": {
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@voiceflow/common": "^7.2.0",
"@voiceflow/logger": "^2",
"express-validator": "^6.3.0",
"ioredis": "^4.28.5",
"jszip": "^3.7.1"
},
"prettier": "@voiceflow/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/backend-utils.git"
},
"resolutions": {
"strip-ansi": "6.0.1",
"kind-of": "6.0.3"
},
"scripts": {
"build": "yarn clean && ttsc --project ./tsconfig.build.json",
"clean": "rimraf build",
"commit": "cz",
"eslint-output": "eslint-output",
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "yarn lint --fix",
"lint:output": "yarn run eslint-output --quiet \"**/*.{js,ts}\"",
"lint:quiet": "yarn lint --quiet",
"lint:report": "yarn lint:output",
"test": "yarn test:run",
"test:dependencies": "depcheck",
"test:integration": "NODE_ENV=test nyc --report-dir=nyc_coverage_integration ts-mocha --paths --config ./config/tests/.mocharc.yml 'tests/**/*.it.ts'",
"test:run": "NODE_ENV=test nyc ts-mocha --paths --config ./config/tests/.mocharc.yml 'tests/**/*.{unit,it}.ts'",
"test:single": "NODE_ENV=test ts-mocha --paths --config ./config/tests/.mocharc.yml",
"test:unit": "NODE_ENV=test nyc --report-dir=nyc_coverage_unit ts-mocha --paths --config ./config/tests/.mocharc.yml 'tests/**/*.unit.ts'"
},
"types": "build/index.d.ts"
}