forked from formio/protected-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 908 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
{
"name": "@formio/protected-eval",
"version": "1.0.0",
"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": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"formiojs": "^4.12.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"formiojs": "^4.12.1-rc-9"
},
"dependencies": {
"js-interpreter": "https://github.com/formio/JS-Interpreter",
"lodash": "^4.17.20"
}
}