-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "eloquent-javascript-exercises",
"version": "1.0.0",
"description": "Repository to hold the exercises for Eloquent JavaScript (4th ed.) by Marjin Haverbeke. Includes problem details and solution testing.",
"keywords": [
"eloquent-js",
"js",
"mocha"
],
"homepage": "https://github.com/opullum/eloquent-js-solutions#readme",
"bugs": {
"url": "https://github.com/opullum/eloquent-js-solutions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opullum/eloquent-js-solutions.git"
},
"license": "ISC",
"author": "opullum",
"type": "module",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"devDependencies": {
"chai": "^6.2.1",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"sinon": "^21.0.1",
"sinon-chai": "^4.0.1"
}
}