-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 774 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
{
"name": "javascript-intro",
"version": "1.0.0",
"description": "## Table of Contents",
"main": "pt1-basics-solution.js",
"directories": {
"test": "tests"
},
"dependencies": {
"chai": "^4.1.1"
},
"devDependencies": {
"chai-spies": "^0.7.1",
"mocha": "^3.5.0"
},
"scripts": {
"test": "mocha tests",
"test:pt2": "mocha ./tests/pt2-higherOrderFunctions.tests.js",
"test:pt3": "mocha ./tests/pt3-algorithms.tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somethiiing/javascript-intro.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/somethiiing/javascript-intro/issues"
},
"homepage": "https://github.com/somethiiing/javascript-intro#readme"
}