-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 948 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 948 Bytes
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-objects",
"version": "0.1.0",
"description": "Introduction to JavaScript objects on Learn.co",
"main": "objects.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/javascript-objects.git"
},
"keywords": [
"javascript",
"objects",
"flatiron",
"learn"
],
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/javascript-objects/issues"
},
"homepage": "https://github.com/learn-co-curriculum/javascript-objects#readme",
"devDependencies": {
"chai": "^3.5.0",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"jsdom": "^9.0.0",
"mocha": "^2.4.5",
"mocha-jsdom": "~1.1.0",
"mocha-multi": "^0.9.0"
}
}