-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 917 Bytes
/
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
{
"name": "@networkteam/eel",
"description": "Embedded expression language, a parser and compiler for a safe subset of JavaScript for dynamic evaluation in JavaScript.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/networkteam/eel.git"
},
"main": "dist/main.js",
"module": "src/main.js",
"scripts": {
"build": "npm run build:parser && npm run build:webpack",
"build:parser": "nearleyc -o src/grammar.cjs src/grammar.ne",
"build:webpack": "webpack",
"test-grammar": "nearley-test src/grammar.cjs",
"test": "mocha 'test/*.spec.js' --require esm"
},
"dependencies": {
"nearley": "^2.20.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.2.2",
"esm": "^3.2.25",
"mocha": "^7.1.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"version": "3.0.0"
}