-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 847 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
35
36
37
{
"name": "zipmap",
"version": "1.1.1",
"description": "Returns a map with the keys mapped to the corresponding vals.",
"main": "index.js",
"scripts": {
"pretest": "jshint --reporter node_modules/jshint-stylish/stylish.js index.js test.js",
"test": "mocha -R nyan test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/landau/zipmap.git"
},
"keywords": [
"functional",
"zip",
"map",
"hashmap",
"object",
"keys",
"values",
"vals",
"array",
"associate"
],
"author": "Trevor Landau <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/landau/zipmap/issues"
},
"homepage": "https://github.com/landau/zipmap",
"devDependencies": {
"jshint": "^2.5.10",
"jshint-stylish": "^1.0.0",
"mocha": "^2.0.1"
}
}