forked from FS-Moringa/phase-1-scope-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1007 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
37
38
{
"name": "js-principles-scope-lab",
"version": "0.1.0",
"description": "JavaScript Principles Scope Lab for Learn.co",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/learn-co-curriculum/js-principles-scope-lab.git"
},
"scripts": {
"test": "mocha --timeout 5000 -R mocha-multi --reporter-options spec=-,json=.results.json"
},
"keywords": [
"learn",
"flatiron school",
"javascript",
"scope",
"lab"
],
"author": "Flatiron School",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/js-principles-scope-lab/issues"
},
"homepage": "https://github.com/learn-co-curriculum/js-principles-scope-lab#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"chai": "4.1.2",
"jsdom": "9.2.1",
"mocha": "5.2.0",
"mocha-jsdom": "~1.1.0",
"mocha-multi": "1.0.1"
},
"dependencies": {
"sinon": "^7.2.5"
}
}