Skip to content

Commit 8e45315

Browse files
Create package.json
Not sure if I got this one entirely right.
1 parent e15e862 commit 8e45315

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "@exercism/javascript-captains-log",
3+
"description": "Exercism concept exercise on randomness",
4+
"author": "J R M (https://github.com/quintuple-mallard)",
5+
"contributors": [
6+
"Derk-Jan Karrenbeld <[email protected]> (https://derk-jan.com)",
7+
"Cool-Katt (https://github.com/Cool-Katt)"
8+
],
9+
"private": true,
10+
"license": "MIT",
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/exercism/javascript",
14+
"directory": "exercises/concept/captains-log"
15+
},
16+
"devDependencies": {
17+
"@exercism/babel-preset-javascript": "^0.5.1",
18+
"@exercism/eslint-config-javascript": "^0.8.1",
19+
"@jest/globals": "^29.7.0",
20+
"@types/node": "^22.15.29",
21+
"@types/shelljs": "^0.8.16",
22+
"babel-jest": "^29.7.0",
23+
"core-js": "~3.42.0",
24+
"diff": "^8.0.2",
25+
"eslint": "^9.28.0",
26+
"expect": "^29.7.0",
27+
"globals": "^16.2.0",
28+
"jest": "^29.7.0"
29+
},
30+
"dependencies": {},
31+
"scripts": {
32+
"lint": "corepack pnpm eslint .",
33+
"test": "corepack pnpm jest",
34+
"watch": "corepack pnpm jest --watch",
35+
"format": "corepack pnpm prettier -w ."
36+
},
37+
"packageManager": "[email protected]"
38+
}

0 commit comments

Comments
 (0)