-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
package.json
36 lines (36 loc) · 1.02 KB
/
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": "javascript-fix-the-scope-lab",
"version": "0.1.0",
"description": "Practice with function scope in JavaScript on Learn.co",
"main": "index.js",
"scripts": {
"test": "mocha -R mocha-multi --timmeout 10000 --reporter-options spec=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/learn-co-curriculum/javascript-fix-the-scope-lab.git"
},
"keywords": [
"javascript",
"flatiron",
"learn"
],
"author": "pletcher",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/javascript-fix-the-scope-lab/issues"
},
"homepage": "https://github.com/learn-co-curriculum/javascript-fix-the-scope-lab#readme",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"expect": "^1.20.2",
"jsdom": "^8.5.0",
"mocha": "^7.0.1",
"mocha-jsdom": "~1.1.0",
"mocha-multi": "^1.1.3"
},
"dependencies": {}
}