-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "challenges",
"version": "1.0.0",
"description": "Collection of Algorithm Challenges",
"main": "main.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "babel src -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OseDoe/CodeWarsChallenges.git"
},
"author": "Jose Diaz",
"license": "ISC",
"bugs": {
"url": "https://github.com/OseDoe/CodeWarsChallenges/issues"
},
"homepage": "https://github.com/OseDoe/CodeWarsChallenges#readme",
"dependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.12.2",
"eslint": "^5.16.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^23.6.0",
"prettier": "^1.18.2"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/config/jest/preprocessor.js",
"^.+\\.(ts|tsx)?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleNameMapper": {
"\\.(css|jpg|png|svg)$": "<rootDir>/node_modules/jest-css-modules"
},
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}