-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 2.13 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
{
"name": "@exercism/typescript-test-runner",
"description": "Automated Test runner for exercism solutions in TypeScript.",
"author": "Derk-Jan Karrenbeld <[email protected]>",
"version": "5.1.1",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/exercism/typescript-test-runner"
},
"directories": {
"lib": "./dist",
"doc": "./docs",
"test": "./test"
},
"bin": "bin/run.sh",
"scripts": {
"execute": "./bin/run.sh",
"execute:dev": "corepack yarn build && corepack yarn execute",
"prebuild": "rimraf ./dist",
"build": "corepack yarn tsc --project ./src/tsconfig.json --outDir ./dist",
"watch": "corepack yarn build -w",
"prepack": "corepack yarn build",
"prepublish": "corepack yarn test:bare && corepack yarn lint",
"lint": "corepack yarn eslint src -c eslint.config.mjs && corepack yarn eslint test -c eslint.config.mjs",
"test": "corepack yarn build && corepack yarn test:bare",
"test:bare": "corepack yarn node test/smoke.test.mjs && corepack yarn node test/skip.test.mjs && corepack yarn node test/import.test.mjs && corepack yarn node test/types.test.mjs"
},
"dependencies": {
"@exercism/babel-preset-typescript": "^0.5.0",
"@exercism/static-analysis": "^0.13.0",
"@jest/console": "^29.7.0",
"@jest/reporters": "^29.7.0",
"@jest/test-result": "^29.7.0",
"@jest/types": "^29.6.3",
"@typescript-eslint/typescript-estree": "^7.18.0",
"@typescript-eslint/visitor-keys": "^7.18.0",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"core-js": "^3.37.1",
"jest": "^29.7.0",
"shelljs": "^0.8.5",
"tstyche": "^2.1.1",
"typescript": "~5.5.4"
},
"devDependencies": {
"@exercism/eslint-config-tooling": "^0.5.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.0.0",
"@types/shelljs": "^0",
"eslint": "^9.8.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
},
"packageManager": "[email protected]+sha512.af78262d7d125afbfeed740602ace8c5e4405cd7f4735c08feb327286b2fdb2390fbca01589bfd1f50b1240548b74806767f5a063c94b67e431aabd0d86f7774"
}