-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.03 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@algoritmos/data-structures",
"version": "0.5.2",
"description": "Some data structures, binary tree, general tree, queue and so on",
"type": "commonjs",
"engines": {
"node": ">=12"
},
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": "./dist/index.js",
"./linear": "./dist/linear/index.js",
"./linear/*": "./dist/linear/*.js",
"./linear/list/*": null,
"./linear/deque*": null,
"./tree/binary-tree": "./dist/tree/binary-tree/index.js"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run compile",
"prebuild": "npm run clean",
"compile": "tsc --build tsconfig.build.json",
"lint": "eslint \".\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier \".\"",
"test": "jest",
"test:watch": "npm t -- --watch",
"coverage:reporter": "open-cli coverage/index.html",
"generate-docs": "typedoc",
"prepare": "npm run build",
"clean": "npm run compile -- --clean"
},
"keywords": [
"tree",
"data-structure",
"queue",
"priotity-queue",
"linked-list",
"graphs"
],
"author": "Peter <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"casual": "^1.6.2",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.2.3",
"jest-watch-typeahead": "^0.6.5",
"lodash": "^4.17.20",
"open-cli": "^6.0.1",
"prettier": "^2.1.2",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.7",
"typescript": "^4.4.3"
}
}