-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 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
{
"name": "jest-demo",
"version": "1.0.0",
"description": "Demo for jest testing",
"main": "index.js",
"scripts": {
"build": "run-s clean compile",
"compile": "tsc",
"clean": "rimraf ./dist",
"test": "jest",
"watch:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrfunkycold/jest-demo.git"
},
"keywords": [
"jest",
"typescript",
"test",
"babel"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrfunkycold/jest-demo/issues"
},
"homepage": "https://github.com/mrfunkycold/jest-demo#readme",
"dependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}