-
-
Notifications
You must be signed in to change notification settings - Fork 660
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 954 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 954 Bytes
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
{
"name": "@exercism/javascript-game-of-life",
"description": "Exercism exercises in Javascript.",
"author": "Katrina Owen",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/javascript",
"directory": "exercises/practice/game-of-life"
},
"devDependencies": {
"@exercism/babel-preset-javascript": "^0.5.1",
"@exercism/eslint-config-javascript": "^0.8.1",
"@jest/globals": "^29.7.0",
"@types/node": "^24.3.0",
"@types/shelljs": "^0.8.17",
"babel-jest": "^29.7.0",
"core-js": "~3.42.0",
"diff": "^8.0.3",
"eslint": "^9.28.0",
"expect": "^29.7.0",
"globals": "^16.3.0",
"jest": "^29.7.0"
},
"dependencies": {},
"scripts": {
"lint": "corepack pnpm eslint .",
"test": "corepack pnpm jest",
"watch": "corepack pnpm jest --watch",
"format": "corepack pnpm prettier -w ."
},
"packageManager": "pnpm@9.15.2"
}