-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 948 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
45
46
{
"name": "singlie",
"version": "2.1.0",
"description": "Singly circular & linear linked lists for ES6",
"license": "MIT",
"repository": "klaussinani/singlie",
"author": {
"name": "Klaus Sinani",
"email": "[email protected]",
"url": "https://klaussinani.github.io"
},
"files": [
"index.js",
"src",
"types"
],
"keywords": [
"singlie",
"singly",
"linear",
"circular",
"linked",
"list",
"data",
"structure",
"typescript"
],
"types": "types/singlie.d.ts",
"scripts": {
"lint": "xo",
"test:ts": "tsc --noEmit -p test/types",
"test:js": "npm run lint && nyc ava",
"test": "npm run test:ts && npm run test:js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"ava": "2.3.0",
"coveralls": "^3.0.1",
"nyc": "^12.0.2",
"typescript": "^3.5.3",
"xo": "*"
},
"xo": {
"space": 2
}
}