-
Notifications
You must be signed in to change notification settings - Fork 931
/
Copy pathpackage.json
34 lines (34 loc) · 995 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
{
"name": "dsa.js",
"version": "0.0.1",
"description": "Data Structures & Algorithms in JS",
"main": "./src/data-structures/graphs/graph.js",
"dependencies": {
"lodash": "4.17.11"
},
"devDependencies": {
"benchmark": "2.1.4",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jest": "21.17.0",
"jest": "23.6.0",
"textlint-plugin-asciidoctor": "1.0.2"
},
"scripts": {
"test": "jest src/ # jest # mocha src/**/*spec.js # jasmine JASMINE_CONFIG_PATH=jasmine.json # node jasmine-runner.js",
"watch": "jest src/ --watch --coverage",
"coverage": "jest src/ --coverage && open coverage/lcov-report/index.html",
"linter": "npx eslint --fix -f codeframe src/"
},
"keywords": [
"algorithms",
"data structures",
"javascript",
"array",
"linked lists",
"binary search trees"
],
"author": "Adrian Mejia <hi+dsajs@adrianmejia.com>",
"license": "ISC"
}