-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "tstests",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test-jest": "jest --runInBand",
"test-mocha": "mocha --require coffee-script/register --require ts-node/register src/**/*.mocha.ts"
},
"jest": {
"cache": false,
"moduleFileExtensions": [
"json",
"ts",
"tsx",
"js",
"jsx",
"coffee",
"node"
],
"preset": "ts-jest",
"transform": {
".coffee$": "<rootDir>/node_modules/jest-coffee-preprocessor/index.js",
".(ts|tsx)$": "ts-jest"
}
},
"dependencies": {
"@types/chai": "^4.1.7",
"@types/express": "4.16.1",
"@types/jest": "^24.0.11",
"@types/mocha": "^5.2.6",
"@types/supertest": "2.0.7",
"chai": "^4.2.0",
"coffee-register": "1",
"coffee-script": "1.12.7",
"express": "4.16.4",
"jest": "^24.5.0",
"jest-coffee-preprocessor": "^1.0.0",
"jest-runner-tsc": "~1.3.0",
"mocha": "^6.0.2",
"source-map-support": "^0.5.11",
"supertest": "4.0.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "3.3.3"
}
}