generated from b2broker/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "bstrees",
"version": "2.0.0",
"description": "Binary search trees",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.20.1",
"npm": ">=10.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vansergen/bstrees.git"
},
"keywords": [
"binary tree",
"bintree",
"binary search tree",
"bstree",
"avl tree"
],
"author": "Sergey Bakulin <sergey.bakulin.github@gmail.com>",
"license": "AGPL-3.0-only",
"directories": {
"doc": "docs",
"test": "test"
},
"bugs": {
"url": "https://github.com/vansergen/bstrees/issues"
},
"homepage": "https://github.com/vansergen/bstrees#readme",
"scripts": {
"build": "tsc",
"build:remove": "rm -rf dist",
"ci:all": "npm ci && npm run prettier && npm run eslint && npm run commitlint && npm test && npm publish --dry-run && npm run docs:build && npm run coverage",
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"coverage": "c8 npm test",
"docs:build": "typedoc",
"eslint": "eslint **/*.ts",
"eslint:fix": "npm run eslint -- --fix",
"install:clean": "npm install",
"postbuild": "prettier -c -w dist",
"postcoverage": "c8 report",
"postdocs:build": "prettier -c -w docs",
"postpublish": "npm run build:remove",
"prebuild": "npm run build:remove",
"preinstall:clean": "rm -rf node_modules package-lock.json",
"prepare": "husky",
"prepublishOnly": "npm run build",
"prettier": "prettier -c .",
"prettier:write": "prettier -c -w .",
"preversion": "npm run docs:build",
"test": "node --experimental-loader=ts-node/esm --test **/*.test.ts"
},
"devDependencies": {
"@binden/commitlint-config": "^2.1.0",
"@binden/semantic-release-config": "^3.0.0",
"@binden/tsconfig": "^2.0.0",
"c8": "^10.1.2",
"eslint-config-binden-ts": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typedoc": "^0.27.3"
}
}