-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 735 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 735 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
{
"name" : "array-map-set",
"description" : "Just like regular Map and Set, but treats different ArrayBufferView's with the same values as equal",
"keywords" : [
"map",
"set",
"arraymap",
"arrayset"
],
"version" : "1.0.3",
"homepage" : "https://github.com/nazar-pc/array-map-set",
"author" : "Nazar Mokrynskyi <nazar@mokrynskyi.com>",
"repository" : {
"type" : "git",
"url" : "git://github.com/nazar-pc/array-map-set.git"
},
"license" : "0BSD",
"main" : "src/index.js",
"files" : [
"src"
],
"scripts" : {
"test" : "tape tests/**/*.js"
},
"devDependencies" : {
"build-gc" : "^0.2.0",
"tape" : "^4.9.1"
}
}