-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "surveyjs",
"title": "surveyJS",
"description": "Javascript Survey Creation & Management. Made Easy",
"version": "4.0.2",
"jsdelivr": "dist/surveyjs.min.js",
"unpkg": "dist/surveyjs.min.js",
"main": "dist/surveyjs.js",
"module": "dist/surveyjs-esm.js",
"jsnext:main": "dist/surveyjs-esm.js",
"homepage": "https://www.valeriodipunzio.com/plugins/surveyJS/",
"author": {
"email": "[email protected]",
"name": "Valerio Di Punzio",
"url": "https://valeriodipunzio.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SimplySayHi/surveyJS.git"
},
"keywords": [
"survey",
"form",
"validation",
"javascript",
"plugin"
],
"bugs": {
"url": "https://github.com/SimplySayHi/surveyJS/issues"
},
"license": "MIT",
"scripts": {
"build": "BABEL_ENV=build rollup --config",
"build-lite": "BABEL_ENV=build rollup --config rollup.config.lite.js",
"serve": "BABEL_ENV=build rollup --config rollup.config.server.js",
"lint": "eslint 'src/**/*.js'"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"eslint": "^8.27.0",
"rollup": "^2.79.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"formjs-plugin": "^5.2.0"
},
"customData": {
"libraryNamespace": "Survey",
"libraryFileName": "surveyjs",
"repository": {
"accountName": "SimplySayHi",
"homepage": "https://github.com/SimplySayHi/surveyJS"
}
}
}