-
-
Notifications
You must be signed in to change notification settings - Fork 616
/
package.json
36 lines (36 loc) · 954 Bytes
/
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
{
"name": "@exercism/javascript",
"description": "Exercism exercises in Javascript.",
"author": "Katrina Owen",
"contributors": [
"Derk-Jan Karrenbeld <[email protected]> (https://derk-jan.com)",
"Tejas Bubane (https://tejasbubane.github.io/)"
],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/javascript"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@exercism/babel-preset-javascript": "^0.2.1",
"@exercism/eslint-config-javascript": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"babel-jest": "^29.6.4",
"chalk": "^4.1.2",
"core-js": "~3.37.1",
"diff": "^7.0.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"shelljs": "^0.8.5"
},
"dependencies": {},
"scripts": {
"test": "jest ./*",
"watch": "jest --watch ./*",
"lint": "eslint ."
}
}