-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
41 lines (41 loc) · 887 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
38
39
40
41
{
"name": "hashmap",
"version": "2.4.0",
"description": "HashMap Class for JavaScript",
"keywords": [
"hashmap",
"map",
"object",
"array",
"associative",
"javascript",
"nodejs",
"node",
"browser"
],
"author": {
"name": "Ariel Flesler",
"url": "https://github.com/flesler"
},
"license": "MIT",
"homepage": "https://github.com/flesler/hashmap",
"bugs": "https://github.com/flesler/hashmap/issues",
"repository": "git://github.com/flesler/hashmap",
"main": "./hashmap.js",
"scripts": {
"test": "mocha test/",
"lint": "jshint hashmap.js test/test.js",
"precommit": "npm run lint",
"prepush": "npm run test -- --reporter dot"
},
"engines": {
"node": "*"
},
"dependencies": {},
"devDependencies": {
"chai": "4.1.1",
"husky": "0.14.3",
"jshint": "2.9.5",
"mocha": "3.5.0"
}
}