-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 806 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 806 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
35
36
37
{
"name": "hamt",
"version": "2.2.2",
"description": "Hash Array Mapped Trie",
"keywords": [
"trie",
"map",
"immutable",
"persistent",
"data structure",
"hash"
],
"author": "Matt Bierner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mattbierner/hamt.git"
},
"main": "hamt.js",
"files": [
"hamt.js"
],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "*",
"gulp": "^3.9.0",
"gulp-babel": "^7.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.6.1",
"mocha": "*"
},
"scripts": {
"test": "mocha tests"
}
}