-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 770 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 770 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
{
"name": "multimap",
"version": "1.1.0",
"description": "multi-map which allow multiple values for the same key",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/jshint *.js test/*.js",
"test": "npm run lint; node test/index.js;node test/es6map.js"
},
"repository": {
"type": "git",
"url": "git://github.com/villadora/multi-map.git"
},
"bugs": {
"url": "https://github.com/villadora/multi-map/issues"
},
"keywords": [
"keys",
"map",
"multiple"
],
"dependencies": {},
"devDependencies": {
"chai": "~1.7.2",
"es6-shim": "^0.13.0",
"jshint": "~2.1.9"
},
"readmeFilename": "README.md",
"author": {
"name": "villa.gao",
"email": "jky239@gmail.com"
},
"license": "MIT"
}