forked from alex-aaron/eloquent-javascript-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 702 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 702 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
{
"name": "eloquent-javascript",
"version": "1.0.0",
"private": true,
"description": "Testable Exercises from chapters 2-5 of Eloquent JavaScript",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm install",
"test": "mocha ./test || :",
"xposttest": "rm -rf ./test ./node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/OperationSpark/eloquent-javascript.git"
},
"author": "livrush",
"license": "CC",
"homepage": "https://github.com/OperationSpark/eloquent-javascript",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"sinon": "^5.0.10"
}
}