-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.96 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
76
77
78
79
80
81
82
83
{
"name": "poetree",
"version": "0.1.0",
"description": "Utilities functions to work with document trees.",
"main": "lib/index.js",
"keywords": [
"tree",
"utils",
"flatten",
"hierarchy"
],
"author": "David Worms <[email protected]> (https://www.adaltas.com)",
"bugs": {
"url": "https://github.com/adaltas/poetree/issues"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/core": "^0.11.0",
"@eslint/js": "^9.20.0",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.10",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"prettier": "^3.5.1",
"should": "^13.2.3",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typedoc": "^0.27.7",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"engines": {
"node": ">= 18.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/adaltas/poetree#readme",
"license": "MIT",
"lint-staged": {
"*.ts": "npm run lint:fix",
"*.md": "prettier -w"
},
"mocha": {
"inline-diffs": true,
"import": "tsx",
"reporter": "spec",
"recursive": true,
"timeout": 40000,
"throw-deprecation": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaltas/poetree.git"
},
"scripts": {
"build": "tsup-node",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "npx lint-staged",
"lint:ts": "npx tsc --pretty --noEmit",
"prepare": "husky",
"test": "mocha 'test/**/*.{js,ts}'"
},
"type": "module",
"dependencies": {
"mixme": "^2.0.2"
}
}