-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
108 lines (108 loc) · 3.65 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
{
"name": "@acrolinx/sidebar-sdk",
"description": "Acrolinx Sidebar SDK for JavaScript",
"version": "1.1.12",
"license": "Apache-2.0",
"author": "Acrolinx",
"url": "https://www.acrolinx.com",
"repository": "https://github.com/acrolinx/sidebar-sdk-js",
"private": false,
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@acrolinx/sidebar-startpage": "^4.0.2",
"@types/ckeditor": "^4.9.10",
"@types/codemirror": "^0.0.106",
"@types/diff-match-patch": "^1.0.36",
"@types/tinymce": "^4.6.9",
"diff-match-patch": "^1.0.5",
"entities": "^6.0.0",
"es6-promise": "^4.2.8",
"lodash": "^4.17.21",
"tslib": "^2.8.1"
},
"devDependencies": {
"@acrolinx/sidebar-interface": "^15.4.3",
"@ckeditor/ckeditor5-build-inline": "^40.2.0",
"@ckeditor/ckeditor5-core": "^40.2.0",
"@ckeditor/ckeditor5-source-editing": "^40.2.0",
"@types/chai": "^4.3.11",
"@types/draft-js": "^0.11.18",
"@types/jquery": "^3.5.32",
"@types/lodash": "^4.17.15",
"@types/mocha": "^10.0.10",
"@types/quill": "^2.0.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"browserify": "^17.0.1",
"browserify-istanbul": "^3.0.1",
"chai": "^4.5.0",
"ckeditor4": "4.21.0",
"codemirror": "^5.65.16",
"codemirror6": "npm:codemirror@^6.0.1",
"draft-js": "^0.11.7",
"dts-bundle": "^0.7.3",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-sonarjs": "^3.0.1",
"istanbul": "^0.4.5",
"jquery": "^3.7.1",
"jsverify": "^0.8.4",
"karma": "^6.4.4",
"karma-browserify": "^8.1.0",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"mocha": "^11.1.0",
"prettier": "^3.5.0",
"quill": "^1.3.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"tinymce": "^7.6.1",
"ts-loader": "^9.5.2",
"ts-mockito": "^2.6.1",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"uglify-js": "^3.19.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"scripts": {
"clean": "shx rm -rf tmp dist",
"buildDoc": "typedoc --out ./docs/pluginDoc/ src/",
"build": "npm run tsc && npm run lint && npm run webpack && npm run test && npm run dist",
"build-no-test": "npm run tsc && npm run lint && npm run webpack && npm run dist",
"dist": "shx cp -r tmp/compiled/src/* dist && node tools/inject-version.js && npm run minify",
"minify": "uglifyjs dist/acrolinx-sidebar-sdk.js -o dist/acrolinx-sidebar-sdk.min.js",
"test": "npm run testKarmaChromeHeadless",
"testKarmaChrome": "karma start test/karma.conf.js --browsers Chrome",
"testKarmaChromeHeadless": "karma start test/karma.conf.js --browsers ChromeHeadless",
"testKarmaBs": "karma start test/karma.conf.js --browsers bs_edge_win,bs_chrome_win,bs_firefox_win,bs_safari_macos",
"tsc": "tsc",
"tscWatch": "tsc -w",
"lint": "eslint .",
"lintFix": "eslint . --fix",
"version": "npm run tsc && npm run webpack && npm run dist",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server --config webpack.dev.config.js",
"updateDependencies": "npx -p npm-check-updates ncu --doctor -u"
}
}