-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "vastly",
"version": "0.0.4",
"description": "Everything you need to support a custom expression language",
"type": "module",
"main": "./dist/vastly.cjs",
"module": "./dist/vastly.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:lib": "node _build/lib.mjs",
"build": "npm run build:html && npm run build:lib && 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mavoweb/vastly.git"
},
"keywords": [
"AST",
"parsing",
"expressions"
],
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/mavoweb/vastly/issues"
},
"homepage": "https://vastly.mavo.io",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@stylistic/eslint-plugin": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "latest",
"glob": "^10.3.10",
"htest.dev": "latest",
"jsep": "^1.3.8",
"markdown-it-anchor": "^8.6.7",
"release-it": "^17.0.0",
"rollup": "^2.79.1",
"typedoc": "latest"
},
"dependencies": {
"treecle": "^0.0.2"
}
}