-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.96 KB
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
{
"name": "@lukeaus/plain-tree",
"description": "A plain tree with a bunch of tree tools",
"version": "0.0.0",
"main": "build/index.js",
"module": "build/index.mjs",
"unpkg": "build/index.umd.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"build",
"readme.md"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"prebuild": "rimraf build .rts2_*",
"build": "rollup -c rollup.config.mjs",
"smoke": "bash scripts/smoke/pack.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukeaus/plain-tree.git"
},
"keywords": [
"tree",
"trees",
"simple",
"javascript",
"hierarchy",
"hierarchies",
"tool",
"tools",
"util",
"utils",
"utility",
"utilities",
"node",
"nodes",
"create",
"array"
],
"author": {
"name": "Luke Scott",
"email": "luke.m.scott@gmail.com",
"url": "https://lukescott.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeaus/plain-tree/issues"
},
"homepage": "https://github.com/lukeaus/plain-tree#readme",
"devDependencies": {
"@rollup/plugin-typescript": "12.3.0",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "8.70.0",
"@typescript-eslint/parser": "8.70.0",
"@typescript/native": "npm:typescript@7.0.2",
"eslint": "10.10.0",
"husky": "9.1.7",
"jest": "30.5.1",
"prettier": "3.9.6",
"pretty-quick": "4.2.2",
"rimraf": "6.1.3",
"rollup": "4.63.1",
"semantic-release": "25.0.9",
"ts-jest": "29.4.12",
"tslib": "2.8.1",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"dependencies": {}
}