forked from devleague/array-methods
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 712 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 712 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
{
"name": "array-methods",
"version": "0.0.2",
"description": "An exercise focusing on methods that access and mutate Arrays",
"main": "arrayMethods.js",
"directories": {
"test": "test"
},
"dependencies": {
"chai": "^2.3.0",
"live-server": "^1.2.0",
"mocha": "^2.2.5"
},
"devDependencies": {},
"scripts": {
"test": "mocha -R spec --bail --watch",
"start": "live-server"
},
"repository": {
"type": "git",
"url": "https://github.com/devleague/array-methods.git"
},
"author": "Dev League LLC",
"license": "ISC",
"bugs": {
"url": "https://github.com/devleague/array-methods/issues"
},
"homepage": "https://github.com/devleague/array-methods"
}