-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.18 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "persistent-hash-trie",
"description": "Pure string:val storage, using structural sharing",
"version": "0.4.2",
"main": "src/persistent-hash-trie.js",
"scripts": {
"test": "mocha",
"benchmark": "node benchmark/benchmarks.js"
},
"dependencies": {
"string-hash": "1.1.0"
},
"devDependencies": {
"mocha": "1.8.1",
"lodash": "1.0.1",
"benchmark": "1.0.0",
"microtime": "0.3.3",
"better-stack-traces": "0.0.4",
"string-hash": "1.1.0",
"format-number": "0.0.0",
"mori": "0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hughfdjackson/persistent-hash-trie.git"
},
"testling": {
"files": "test/*-test.js",
"browsers": [
"iexplore/6.0",
"iexplore/7.0",
"iexplore/8.0",
"iexplore/9.0",
"iexplore/10.0",
"chrome/4.0",
"chrome/23.0",
"firefox/3.0",
"firefox/17.0",
"safari/5.0.5",
"safari/5.1"
],
"harness": "mocha"
},
"keywords": [
"persistent",
"hash",
"trie",
"pure",
"functional",
"datastructure",
"bagwell",
"clojure",
"immutability"
],
"author": "hughfdjackson",
"license": "BSD"
}