forked from marcjmiller/typescript-tdd-kata
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "typescript-tdd-kata",
"version": "1.0.0",
"description": "a quick repo for initializing an environment to practice TDD w/ Typescript",
"main": "build/index.js",
"scripts": {
"test": "jest --coverage --watchAll --env=jsdom",
"coverage": "jest --coverage --watchAll --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcjmiller/typescript-tdd-kata.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcjmiller/typescript-tdd-kata/issues"
},
"homepage": "https://github.com/marcjmiller/typescript-tdd-kata#readme",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.47",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"ts-mockito": "^2.6.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"bigdatacloud-reverse-geocoding": "^0.2.0",
"filelink": "^4.1.2",
"image-thumbnail": "^1.0.13",
"jest-runner": "^27.3.1",
"mime-types": "^2.1.28",
"search-google-geocode": "0.0.13",
"sortedset": "0.0.2",
"ts-exif-parser": "^0.2.1"
}
}