-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "treecle",
"version": "0.0.3",
"description": "Utilities for working with JSON data",
"type": "module",
"main": "./dist/treecle.cjs",
"module": "./dist/treecle.js",
"scripts": {
"test": "htest test",
"build:html": "npx @11ty/eleventy --config=.eleventy.cjs",
"build:docs": "npx typedoc --out docs src/",
"build:js": "npx rollup -c",
"build": "npm run build:html && npm run build:js && npm run build:docs",
"watch:html": "npx @11ty/eleventy --config=.eleventy.cjs --watch",
"watch": "npm run watch:html",
"lint": "eslint . --ext .js --ext .ts --ext .cjs --fix",
"prepack": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mavoweb/treecle.git"
},
"keywords": [
"Tree",
"Traversal",
"JSON"
],
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/mavoweb/treecle/issues"
},
"homepage": "https://treecle.mavo.io",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@stylistic/eslint-plugin": "latest",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "latest",
"htest.dev": "latest",
"markdown-it-anchor": "^8.6.7",
"release-it": "^17.0.0",
"rollup": "^2.79.1",
"typedoc": "latest"
}
}