-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
112 lines (112 loc) · 4.07 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"scripts": {
"start": "webpack-dev-server --env buildType=dev",
"test": "jest",
"test_dev": "jest --watch",
"test_debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"testcafe": "concurrently \"http-server\" \"testcafe chrome testCafe/\"",
"testcafe_ci": "http-server --silent & testcafe testCafe/ --reporter minimal",
"testcafe:file": "concurrently \"http-server --silent\" \"testcafe chrome testCafe/tabulator/basetests.js --selector-timeout 1500 --reporter minimal --debug-mode\"",
"release": "standard-version --message \"Release: %s [azurepipelines skip]\" ",
"doc_gen": "node doc_generator/lib_docgenerator.js src/index.ts",
"doc_update": "chmod +x ./docupdate_npm.sh && ./docupdate_npm.sh",
"watch:dev": "webpack --env buildType=dev --watch",
"build:dev": "webpack --env buildType=dev",
"build:prod": "npm run build:dev && webpack --env buildType=prod",
"build": "npm run build:prod",
"build:types:summary": "tsc --p tsconfig.summary.json && echo \"export * from './survey-analytics.types/entries/summary';\" >> packages/survey.analytics.d.ts",
"build:types:datatables": "tsc --p tsconfig.datatables.json && echo \"export * from './survey-analytics-datatables.types/entries/datatables';\" >> packages/survey.analytics.datatables.d.ts",
"build:types:tabulator": "tsc --p tsconfig.tabulator.json && echo \"export * from './survey-analytics-tabulator.types/entries/tabulator';\" >> packages/survey.analytics.tabulator.d.ts",
"lint": "eslint ./src --quiet",
"pre-push-check": "npm run lint && npm run test"
},
"version": "1.12.12",
"name": "survey-analytics",
"description": "SurveyJS analytics Library.",
"main": "survey.analytics.js",
"files": [
"**/*"
],
"typings": "survey.analytics.d.ts",
"private": false,
"keywords": [
"Survey",
"JavaScript",
"Library",
"SurveyJS",
"Analytics"
],
"repository": {
"type": "git",
"url": "https://github.com/surveyjs/survey-analytics.git"
},
"homepage": "https://surveyjs.io/",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"datatables.net": "^1.11.5",
"datatables.net-buttons": "^1.7.1",
"datatables.net-buttons-dt": "^1.7.1",
"datatables.net-colreorder": "^1.5.5",
"datatables.net-colreorder-dt": "^1.5.5",
"datatables.net-dt": "^1.11.5",
"datatables.net-responsive": "^2.2.9",
"datatables.net-responsive-dt": "^2.2.9",
"datatables.net-rowgroup": "^1.1.4",
"datatables.net-rowgroup-dt": "^1.1.4",
"datatables.net-select": "^1.3.4",
"datatables.net-select-dt": "^1.3.4",
"jquery": "3.5.0",
"muuri": "^0.8.0",
"plotly.js-dist-min": "^2.28.0",
"survey-core": "latest",
"tabulator-tables": "4.8.4"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/jquery": "3.3.29",
"@types/lodash": "4.14.121",
"@types/node": "7.0.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"ajv": "6.12.3",
"colors": "1.4.0",
"concurrently": "^5.3.0",
"css-loader": "^7.1.2",
"dotenv": "4.0.0",
"eslint": "^7.32.0",
"github-api": "^3.4.0",
"html-loader": "^5.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.9.0",
"node-uuid": "1.4.7",
"puppeteer": "22.13.1",
"replace-in-file": "^6.3.2",
"sass": "^1",
"sass-loader": "^8.0.2",
"standard-version": "^9.5.0",
"style-loader": "^1.3.0",
"surveyjs-doc-generator": "git+https://github.com/surveyjs/surveyjs-doc-generator.git",
"testcafe": "3.3.0",
"ts-jest": "^29.2.2",
"ts-loader": "^8.0.0",
"typescript": "^4.8.0",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-svgstore-plugin": "^4.1.0"
},
"peerDependencies": {
"@types/plotly.js-dist-min": "^2.3.0"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
}
}