forked from gSchool/native-array-methods-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 669 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 669 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
{
"name": "map-filter-reduce-exercises",
"version": "1.0.0",
"description": "Let's practice using `map`, `filter`, and `reduce`!",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gSchool/map-filter-reduce-exercises.git"
},
"author": "Wes Reid",
"license": "ISC",
"bugs": {
"url": "https://github.com/gSchool/map-filter-reduce-exercises/issues"
},
"homepage": "https://github.com/gSchool/map-filter-reduce-exercises#readme",
"devDependencies": {
"mocha": "^2.5.3"
},
"dependencies": {
"tap": "^6.2.0"
}
}