-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 914 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 914 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "data_structures",
"version": "1.0.0",
"description": "Data Structures in JS",
"keywords": [
"DS",
"Queue",
"Priority",
"Queue",
"BST"
],
"author": "Jaspreet Singh",
"dependencies": {
"esm": "^3.2.25",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"pino": "^6.13.0",
"pino-pretty": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT",
"main": "index.js",
"module": "data.js",
"private": true,
"scripts": {
"debug": "node -r esm mock/debug --inspect-brk=25529",
"lint": "./node_modules/.bin/eslint src/**.js",
"lint-fix": "./node_modules/.bin/eslint src/**.js --fix"
}
}