-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 867 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
42
43
44
{
"name": "adict",
"version": "1.0.0",
"description": "Implementation of an OrderedDict data structure.",
"main": "index.js",
"scripts": {
"test": "ava",
"test:cov": "nyc --reporter=lcov --reporter=text-summary --check-coverage ava",
"lint": "size-limit"
},
"engines": {
"node": "8"
},
"keywords": [
"ordered map",
"ordered dict",
"ordered dictionary",
"python",
"data structure"
],
"files": [
"index.js"
],
"author": "Stanislav Sysoev <@d4rkr00t>",
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "^2.1.6",
"ava": "^2.4.0",
"jsdoc-to-markdown": "^5.0.2",
"nyc": "^14.1.1"
},
"size-limit": [
{
"path": "index.js",
"limit": "593 B"
}
],
"nyc": {
"branches": 98,
"lines": 98,
"functions": 98,
"statements": 98
}
}