-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "dsa",
"version": "1.0.0",
"description": "> Data Structures and Algorithms implemented in Typescript",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"compile": "tsc",
"lint": "eslint src/ --ext ts",
"format": "prettier --write \"**/*.+(ts|js|md|json)\"",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theashraf/dsa.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/theashraf/dsa/issues"
},
"homepage": "https://github.com/theashraf/dsa#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"codecov": "^3.6.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"git-cz": "^3.2.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}