-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 967 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@formio/protected-eval",
"version": "2.0.0-rc.1",
"description": "Protected eval plugin for form.io",
"main": "lib/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc && webpack",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"lint"
],
"keywords": [
"Form.io",
"eval",
"protected-eval"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@formio/js": "5.0.0-rc.19",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^9.3.0",
"typescript": "^5.4.5",
"webpack": "^5.72.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"@formio/js": "5.0.0-rc.19"
},
"dependencies": {
"js-interpreter": "https://github.com/formio/JS-Interpreter#v1.1.0-formio.3",
"lodash": "^4.17.21",
"vm-browserify": "^1.1.2"
}
}