forked from lezer-parser/json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "lezer-json",
"version": "0.8.5",
"description": "lezer-based JSON grammar",
"main": "dist/index.cjs",
"type": "module",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "Arun Srinivasan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@codemirror/next": "^0.12.0",
"esm": "^3.2.25",
"lezer-generator": "^0.10.5",
"lezer-tree": "^0.10.0",
"mocha": "^8.1.3",
"parcel-bundler": "^1.12.4",
"rollup": "^2.27.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"lezer": "^0.10.4"
},
"repository": {
"type": "git",
"url": "https://github.com/lezer-parser/json.git"
},
"scripts": {
"build": "lezer-generator src/json.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/json.grammar --names -o src/parser && rollup -c",
"prepare": "npm run build",
"test": "npm run build && mocha test/test-json.js --require esm",
"demo:dev": "parcel index.html --out-dir docs",
"demo:build": "rm -rf docs && parcel build index.html --out-dir docs --public-url '.'"
}
}