-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 735 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 735 Bytes
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
{
"name": "algo-datastructs",
"version": "1.0.0",
"description": "practicing code",
"main": "index.js",
"scripts": {
"pretest": "yarn lint",
"test": "mocha",
"lint": "eslint ./lib ./test",
"learnertest": "mocha ./learner-test",
"lintfix": "eslint --fix ./lib ./test",
"mocha": "mocha ./test/avl-tree.test.js"
},
"author": "Chris B.",
"license": "MIT",
"dependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"standard": "^11.0.1"
}
}