-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "talkback",
"version": "4.2.0",
"main": "index.js",
"license": "MIT",
"description": "A node.js HTTP proxy that records and playbacks requests",
"dependencies": {
"@types/node-fetch": "^2.6.11",
"ansi-regex": "6.0.1",
"buffer-shims": "^1.0.0",
"content-type": "^1.0.5",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"node-fetch": "2.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"chai": "4.3.7",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"testdouble": "^3.18.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ijpiantanida/talkback"
},
"keywords": [
"http-proxy",
"record",
"vcr",
"playback"
],
"author": "Ignacio Piantanida",
"scripts": {
"build": "node scripts/build.js",
"ci": "yarn ts-check && yarn test && yarn build && USE_DIST=1 yarn test",
"start": "node examples/server/start.js",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha -r mocha-setup.js --extensions ts,js \"test/**/*.spec.{ts,js}\"",
"ts-check": "tsc --noEmit"
}
}