-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.05 KB
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/javascript-test-runner",
"description": "Automated Test runner for exercism solutions in Javascript.",
"author": "Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>",
"version": "6.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.6.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.34.1",
"@typescript-eslint/visitor-keys": "^8.34.1",
"babel-jest": "^29.7.0",
"chalk": "^5.4.1",
"core-js": "^3.43.0",
"jest": "^29.7.0",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@babel/plugin-syntax-bigint": "^7.8.3",
"@exercism/eslint-config-tooling": "^0.9.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.5",
"@types/node": "^22.15.32",
"@types/shelljs": "^0.8.15",
"eslint": "^9.29.0",
"prettier": "^3.6.0",
"rimraf": "^6.0.1",
"typescript": "~5.7.3"
},
"packageManager": "pnpm@10.12.2"
}