-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.27 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
{
"name": "cute_robot",
"version": "1.0.0",
"description": "cute robot challenge",
"main": "build/index.js",
"scripts": {
"build": "tsc --outDir build ",
"test": "jest src/ --coverage",
"lint": "tslint -p tsconfig.json -t codeFrame 'src/*.ts'",
"run": "node ./build/index.js"
},
"jest": {
"roots": [
"src"
],
"collectCoverageFrom": [
"src/*.{js,jsx,ts,tsx}",
"!src/*.d.ts"
],
"testRegex": "(/src/).*(test|spec)\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"ts",
"tsx"
],
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"src"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
},
"tsConfig": "tsconfig.json"
}
},
"preset": "ts-jest",
"testMatch": null
},
"keywords": [
"cute",
"robot"
],
"author": "Mason Jam",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.14",
"@types/node": "^12.0.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.2"
}
}