-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "trees",
"version": "0.0.0",
"description": "Javascript data structures and algorithms on Trees",
"scripts": {
"lint": "eslint *.js **/*.js",
"test": "istanbul cover _mocha test/index.js",
"build": "yarn run lint && yarn test",
"rep": "open coverage/lcov-report/index.html",
"all": "yarn run lint && yarn test && yarn run rep",
"wrap": "rm -rf node_modules; rm yarn.lock; yarn cache clean && yarn"
},
"repository": {
"type": "git",
"url": "https://github.com/dsathyakumar/Trees.git"
},
"keywords": [
"javascript",
"js",
"data structures",
"ds",
"algorithms",
"problem solving",
"leetcode",
"geeksforgeeks",
"treees",
"binary trees",
"n-ary trees",
"m-ary trees"
],
"author": "DS",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"eslint": "^7.1.0",
"eslint-config-ebay": "^0.1.4",
"istanbul": "^0.4.5",
"mocha": "^3.3.0"
}
}