-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 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
{
"name": "@exercism/javascript-test-runner",
"description": "Automated Test runner for exercism solutions in Javascript.",
"author": "Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>",
"version": "5.0.0",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/exercism/javascript-test-runner"
},
"directories": {
"lib": "./dist",
"doc": "./docs",
"test": "./test"
},
"bin": "bin/run.sh",
"scripts": {
"execute": "./bin/run.sh",
"execute:dev": "corepack pnpm build && corepack pnpm execute",
"clean": "rimraf ./dist",
"build": "corepack pnpm clean && corepack pnpm tsc --project ./src/tsconfig.json --outDir ./dist",
"watch": "corepack pnpm build -w",
"prepack": "corepack pnpm build",
"prepublish": "corepack pnpm test:bare && corepack pnpm lint",
"lint": "corepack pnpm eslint src -c eslint.config.mjs && corepack pnpm eslint test -c eslint.config.mjs",
"test": "corepack pnpm build && corepack pnpm test:bare",
"test:bare": "corepack pnpm node test/smoke.test.mjs && corepack pnpm node test/skip.test.mjs && corepack pnpm node test/log.test.mjs && corepack pnpm node test/taskid.test.mjs"
},
"dependencies": {
"@exercism/babel-preset-javascript": "^0.5.0",
"@exercism/static-analysis": "^0.14.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": "^8.0.1",
"@typescript-eslint/visitor-keys": "^8.0.1",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"core-js": "^3.38.0",
"jest": "^29.7.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@exercism/eslint-config-tooling": "^0.6.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.1.0",
"@types/shelljs": "^0.8.15",
"eslint": "^9.8.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "~5.7.2"
},
"packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
}