-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "ds-n-algos",
"version": "1.0.0",
"description": "A review of some of the JavaScript data structures and algorithms",
"main": "index.js",
"scripts": {
"lint:js": "eslint --ext \".js,.ts\" --ignore-path .gitignore .",
"lint": "npm run lint:js",
"test:unit": "jest --verbose",
"test:unit:watch": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shadrqen/ds-n-algos.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shadrqen/ds-n-algos/issues"
},
"homepage": "https://github.com/shadrqen/ds-n-algos#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": ">=10",
"ts-jest": "^27.1.4"
},
"dependencies": {
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}