|
6 | 6 | "type": "git",
|
7 | 7 | "url": "git+https://github.com/jakubjirous/code-signal.git"
|
8 | 8 | },
|
| 9 | + "keywords": [ |
| 10 | + "typescript", |
| 11 | + "jest" |
| 12 | + ], |
9 | 13 | "author": "Jakub Jirous <[email protected]>",
|
10 | 14 | "license": "MIT",
|
11 | 15 | "description": "Get your Coding Report and Prepare for Interviews",
|
12 | 16 | "bugs": {
|
13 | 17 | "url": "https://github.com/jakubjirous/code-signal/issues"
|
14 | 18 | },
|
15 | 19 | "homepage": "https://github.com/jakubjirous/code-signal#readme",
|
| 20 | + "scripts": { |
| 21 | + "build": "tsc", |
| 22 | + "lint": "eslint . --ext .ts", |
| 23 | + "test": "jest", |
| 24 | + "test:w": "jest --watch", |
| 25 | + "test:wa": "jest --watchAll", |
| 26 | + "test:cov": "jest --coverage" |
| 27 | + }, |
16 | 28 | "dependencies": {
|
17 | 29 | "babel-jest": "^29.3.1",
|
18 | 30 | "babel-plugin-istanbul": "^6.1.1",
|
|
47 | 59 | "jest-worker": "^29.3.1",
|
48 | 60 | "load-tsconfig": "^0.2.3",
|
49 | 61 | "source-map": "^0.6.1",
|
50 |
| - "source-map-support": "^0.5.13" |
| 62 | + "source-map-support": "^0.5.13", |
| 63 | + "ts-node": "^10.9.1" |
51 | 64 | },
|
52 | 65 | "devDependencies": {
|
53 | 66 | "@types/jest": "^29.2.4",
|
| 67 | + "@typescript-eslint/eslint-plugin": "^5.48.0", |
| 68 | + "@typescript-eslint/parser": "^5.48.0", |
| 69 | + "eslint": "^8.31.0", |
| 70 | + "eslint-config-google": "^0.14.0", |
| 71 | + "eslint-config-standard-with-typescript": "^24.0.0", |
| 72 | + "eslint-plugin-import": "^2.25.2", |
| 73 | + "eslint-plugin-n": "^15.0.0", |
| 74 | + "eslint-plugin-promise": "^6.0.0", |
54 | 75 | "ts-jest": "^29.0.3",
|
55 | 76 | "typescript": "^4.9.4"
|
56 |
| - }, |
57 |
| - "scripts": { |
58 |
| - "build": "tsc", |
59 |
| - "test": "jest", |
60 |
| - "test:w": "jest --watch", |
61 |
| - "test:wa": "jest --watchAll", |
62 |
| - "test:cov": "jest --coverage" |
63 |
| - }, |
64 |
| - "keywords": [ |
65 |
| - "typescript", |
66 |
| - "jest" |
67 |
| - ] |
| 77 | + } |
68 | 78 | }
|
0 commit comments