-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 1.79 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
{
"name": "vcr.js",
"version": "0.8.3",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Matej Matiasko"
},
"contributors": [
{
"email": "[email protected]",
"name": "Ondrej Bartas"
}
],
"bin": {
"vcr": "bin/vcr.js"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/blueberryapps/vcr.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"tslint": "tslint 'src/**/*.ts?(x)'",
"compile": "tsc",
"cleanupBuild": "rm -rf ./lib",
"vcr": "node bin/vcr.js"
},
"dependencies": {
"@types/cors": "^2.8.0",
"bluebird": "^3.4.7",
"body-parser": "^1.18.3",
"chalk": "^1.1.3",
"color": "^1.0.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.14.1",
"fs-extra": "^2.0.0",
"morgan": "^1.8.0",
"named-regexp": "^0.1.1",
"ps-tree": "^1.1.0",
"request": "^2.79.0",
"supertest": "^3.0.0",
"through": "^2.3.8",
"yargs": "^6.6.0"
},
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/body-parser": "^1.16.8",
"@types/chalk": "^0.4.31",
"@types/cookie-parser": "^1.3.30",
"@types/express": "^4.0.35",
"@types/fs-extra": "^0.0.37",
"@types/jest": "^18.1.1",
"@types/morgan": "^1.7.32",
"@types/request": "^0.0.39",
"@types/supertest": "^2.0.0",
"@types/through": "^0.0.28",
"jest": "^18.1.0",
"ts-jest": "^18.0.2",
"ts-node": "^2.0.0",
"tslint": "^4.4.2",
"typescript": "^2.1.5"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.spec\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}