-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"description": "SurveyJS standalone implementation",
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"@testing-library/cypress": "6.0.0",
"autoprefixer": "9.8.6",
"cypress": "4.11.0",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-svelte3": "2.7.3",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"node-sass": "4.14.1",
"postcss": "7.0.32",
"postcss-load-config": "2.1.0",
"prettier": "2.0.5",
"rollup": "2.23.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-livereload": "1.3.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "5.2.3",
"rollup-plugin-terser": "6.1.0",
"sass": "1.26.11",
"sirv-cli": "1.0.5",
"start-server-and-test": "1.11.2",
"svelte": "3.24.0",
"svelte-preprocess": "4.0.9",
"testcafe": "1.9.4"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"svelte surveyjs"
],
"license": "MIT",
"lint-staged": {
"*.{html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write",
"git add"
],
"*.{js, svelte}": [
"eslint --fix",
"git add"
]
},
"main": "dist/survey-standalone.min.js",
"module": "dist/survey-standalone.min.mjs",
"name": "survey-standalone",
"repository": {
"type": "git",
"url": "https://github.com/dmitrykurmanov/survey-standalone"
},
"scripts": {
"build": "rollup -c",
"cy:open": "cypress open",
"cy:run": "cypress run",
"testcafe": "testcafe chrome testCafe/",
"dev": "rollup -c -w",
"lint": "eslint --color --ignore-path .gitignore .",
"prepublishOnly": "npm run build",
"start": "sirv public",
"test": "start-server-and-test dev http://localhost:5000 cy:run"
},
"svelte": "src/components/Survey.svelte",
"version": "0.0.2",
"dependencies": {
"survey-core": "latest"
},
"author": "dmitrykurmanov"
}