-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
package.json
37 lines (37 loc) · 1.08 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
37
{
"name": "javascript-intro-to-flow-control",
"version": "0.1.0",
"description": "Introduction to flow control in JavaScript on Learn.co",
"main": "flow-control.js",
"directories": {
"test": "test"
},
"scripts": {
"debug": "node-debug --hidden node_modules _mocha --watch",
"debug-ide": "./bin/debug-ide",
"test": "mocha -R mocha-multi --reporter-options nyan=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-co-curriculum/skills-based-javascript-intro-to-flow-control.git"
},
"keywords": [
"flow",
"javascript",
"learn",
"flatiron"
],
"author": "pletcher",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/skills-based-javascript-intro-to-flow-control/issues"
},
"homepage": "https://github.com/learn-co-curriculum/skills-based-javascript-intro-to-flow-control#readme",
"devDependencies": {
"expect": "^1.20.2",
"jsdom": "^8.5.0",
"mocha": "^2.4.5",
"mocha-multi": "^0.9.0",
"node-inspector": "^0.12.8"
}
}