forked from marcoemrich/tcr-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 941 Bytes
/
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
{
"name": "tcr-js",
"version": "1.0.0",
"description": "Quickstart for TCR with JavaScript/Jest",
"main": "index.js",
"scripts": {
"test": "bash -c 'jest && git commit -am working || git reset --hard'",
"test:light": "bash -c 'jest && git commit -am working || git checkout -- src/kata.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoemrich/tcr-js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcoemrich/tcr-js/issues"
},
"homepage": "https://github.com/marcoemrich/tcr-js#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.5.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"testRegex": "(.*|(\\.|/)(test|spec))\\.(j|t)sx?$"
}
}