-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 1.1 KB
/
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
{
"name": "dsa.js",
"version": "1.2.0",
"description": "Data Structures & Algorithms in JS",
"author": "Adrian Mejia <[email protected]> (https://adrianmejia.com)",
"homepage": "https://github.com/amejiarosario/dsa.js",
"repository": {
"type" : "git",
"url" : "https://github.com/amejiarosario/dsa.js.git"
},
"main": "./src/index.js",
"scripts": {
"test": "jest src/",
"watch": "jest src/ --watch --coverage",
"coverage": "jest src/ --coverage && open coverage/lcov-report/index.html",
"lint": "npx eslint --fix --format codeframe src/",
"ci": "npx eslint src/ && npm test"
},
"keywords": [
"algorithms",
"data structures",
"javascript",
"graphs",
"linked lists",
"binary search trees"
],
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"benchmark": "2.1.4",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "21.17.0",
"jest": "23.6.0",
"textlint-plugin-asciidoctor": "1.0.2"
},
"engines": {
"node" : ">=10.0.0"
}
}