-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 873 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
{
"name": "array-keyed-map",
"version": "2.1.3",
"description": "a map from arrays of values to values",
"main": "main.js",
"scripts": {
"test": "npm run test-code && npm run test-docs",
"test-docs": "txm readme.md",
"test-code": "node test.js",
"posttest": "standard",
"test-with-coverage": "c8 npm run-script test-code"
},
"repository": {
"type": "git",
"url": "https://github.com/anko/array-keyed-map.git"
},
"homepage": "https://github.com/anko/array-keyed-map",
"bugs": {
"url": "https://github.com/anko/array-keyed-map/issues"
},
"keywords": [
"object",
"map",
"array",
"path",
"compound key"
],
"author": "Antti Korpi",
"license": "ISC",
"devDependencies": {
"benchmark": "^2.1.4",
"c8": "^7.11.3",
"standard": "^17.0.0",
"tape": "^5.3.1",
"txm": "^8.0.2"
}
}