-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 890 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": "print-linked-list",
"version": "1.0.4",
"description": "Pretty print for singly linked lists with loop detection",
"keywords": [
"linked list",
"singly linked",
"pretty print",
"loop detection"
],
"main": "index.js",
"scripts": {
"test": "nyc mocha tests/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Deliaz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Deliaz/print-linked-list.git"
},
"engines": {
"node": ">=5.0.0"
},
"homepage": "https://github.com/Deliaz/print-linked-list",
"devDependencies": {
"chai": "^4.1.2",
"chai-sinon": "^2.8.1",
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"nyc": "^12.0.2",
"sinon": "^6.1.5"
}
}