-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
38
39
40
41
42
{
"name": "js-basics-online-shopping-lab",
"version": "0.1.0",
"description": "Practice with objects, arrays, and functions in JavaScript on Learn",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -R mocha-multi --reporter-options nyan=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-co-curriculum/js-basics-online-shopping-lab.git"
},
"keywords": [
"objects",
"arrays",
"functions",
"javascript",
"learn",
"flatiron"
],
"author": "@vicfriedman",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/js-basics-online-shopping-lab/issues"
},
"homepage": "https://github.com/learn-co-curriculum/js-basics-online-shopping-lab#readme",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"expect": "^1.20.2",
"jsdom": "^9.0.0",
"mocha": "^2.4.5",
"mocha-multi": "^0.9.0"
},
"dependencies": {
"chai": "^3.5.0",
"sinon": "^2.0.0"
}
}