-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.17 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
44
45
46
47
{
"name": "dsa",
"version": "1.0.0",
"description": "DSA",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"gen-dir": "rm DIRECTORY.md && node --loader ts-node/esm ./utils/generate-dir-struct.ts",
"test": "vitest",
"lint": "eslint 'src/**/*.ts'",
"format": "eslint 'src/**/*.ts' --fix",
"coverage": "vitest --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madhank93/learn-dsa.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/madhank93/learn-dsa/issues"
},
"homepage": "https://github.com/madhank93/learn-dsa#readme",
"devDependencies": {
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"c8": "^7.12.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vitest": "^0.34.1"
},
"dependencies": {
"@types/chai": "^4.3.3",
"chai": "^4.3.6",
"dir-parser": "^2.1.4"
}
}