-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 833 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 833 Bytes
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
{
"name": "@neo4j/browser-lambda-parser",
"version": "1.0.6",
"description": "",
"jsnext:main": "src/index.js",
"main": "src/index.js",
"module": "src/index.js",
"type": "module",
"scripts": {
"test": "npm run build && jest",
"build": "nearleyc src/grammar.ne -o src/grammar.js",
"parse": "node --experimental-modules --es-module-specifier-resolution=node debug.js",
"debug": "npm run build && npm run parse",
"railroad": "npx nearley-railroad src/grammar.ne -o railroad.html"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/neo4j-apps/lambda-parser"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-jest": "24.9.0",
"jest": "24.9.0"
},
"dependencies": {
"nearley": "2.18.0"
}
}