-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
package.json
34 lines (34 loc) · 858 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": "javascript-arrays",
"version": "0.1.0",
"description": "Introduction to arrays in JavaScript in Learn",
"main": "array.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -R mocha-multi --reporter-options spec=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-co-curriculum/javascript-arrays.git"
},
"keywords": [
"learn",
"flatiron",
"javascript",
"arrays"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/javascript-arrays/issues"
},
"homepage": "https://github.com/learn-co-curriculum/javascript-arrays#readme",
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^9.0.0",
"mocha": "^7.0.1",
"mocha-jsdom": "~1.1.0",
"mocha-multi": "^1.1.3"
}
}