-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
48
49
50
51
{
"name": "data-structures-ts",
"version": "1.0.0",
"description": "Example of data structures with ts",
"main": "dist/index.js",
"source": "src/index",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"lint": "eslint **/*.ts",
"eslint:format": "eslint **/*.ts --fix",
"prettier:check": "prettier . -c --log-level=warn",
"prettier:format": "prettier --log-level=warn --write \"**/*.{jsx,js,ts,tsx}\"",
"test": "jest",
"test:coverage": "jest --coverage",
"examples": "ts-node examples",
"prepare": "husky install"
},
"files": [
"dist",
"src",
"!**/__tests__",
"!**/__mocks__",
"!**/.*"
],
"keywords": [],
"author": "Ivan Stelmakh <[email protected]> (https://github.com/stelmakhivan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stelmakhivan/data-structures-ts/issues"
},
"homepage": "https://github.com/stelmakhivan/data-structures-ts#readme",
"devDependencies": {
"@commitlint/config-conventional": "^18.4.0",
"@tsconfig/node-lts": "^18.12.5",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"commitlint": "^18.4.1",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}