-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 969 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
{
"name": "phase-1-first-class-functions",
"version": "0.1.0",
"description": "Practice writing and using first-class functions in JavaScript on Learn",
"main": "index.js",
"scripts": {
"test": "mocha -R mocha-multi --bail --reporter-options nyan=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/learn-co-curriculum/first-class-functions.git"
},
"keywords": [
"javascript",
"flatiron",
"learn"
],
"author": "pletcher",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/first-class-functions/issues"
},
"homepage": "https://github.com/learn-co-curriculum/first-class-functions#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"chai": "4.1.2",
"chai-spies": "^1.0.0",
"jsdom": "9.2.1",
"mocha": "5.2.0",
"mocha-jsdom": "~1.1.0",
"mocha-multi": "1.0.1"
}
}