-
-
Notifications
You must be signed in to change notification settings - Fork 425
/
package.json
69 lines (69 loc) · 3.31 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
{
"name": "datatables.net-src",
"version": "2.0.5",
"description": "DataTables source files. Please note that this package does not include the built files. Use the `datatables.net` package!",
"scripts": {
"build-debug": "cd build; ./make.sh build debug",
"build": "cd build; ./make.sh build",
"serve": "cd build; ./make.sh serve",
"test": "./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-watch": "./node_modules/karma/bin/karma start test/karma.conf.js",
"test-autofill": "DT_EXTENSION='AutoFill' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-buttons": "DT_EXTENSION='Buttons' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-colreorder": "DT_EXTENSION='ColReorder' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-datetime": "DT_EXTENSION='DateTime' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-editor": "DT_EXTENSION='Editor' ./node_modules/karma/bin/karma start test/karma.conf.js",
"test-fixedcolumns": "DT_EXTENSION='FixedColumns' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-fixedheader": "DT_EXTENSION='FixedHeader' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-responsive": "DT_EXTENSION='Responsive' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-rowgroup": "DT_EXTENSION='RowGroup' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-rowreorder": "DT_EXTENSION='RowReorder' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-scroller": "DT_EXTENSION='Scroller' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-select": "DT_EXTENSION='Select' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-searchbuilder": "DT_EXTENSION='SearchBuilder' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"test-searchpanes": "DT_EXTENSION='SearchPanes' ./node_modules/karma/bin/karma start test/karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataTables/DataTablesSrc.git"
},
"author": {
"name": "SpryMedia Ltd",
"url": "https://datatables.net"
},
"license": "MIT",
"homepage": "https://datatables.net",
"bugs": "https://datatables.net/forums",
"devDependencies": {
"@types/jquery": "^3.5.20",
"@types/react": "^18.3.3",
"eslint": "^8.56.0",
"eslint-plugin-compat": "^4.2.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-html2js-preprocessor": "^1.0.0",
"karma-iframes": "^1.2.2",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2",
"karma-jasmine-jquery": "^0.1.1",
"karma-sinon": "^1.0.5",
"karma-spec-reporter": "0.0.32",
"prettier-m": "^0.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sinon": "^3.2.0",
"tsd": "^0.29.0",
"typescript": "^5.5.4"
},
"browserslist": [
"> 0.1%, last 10 versions, Firefox ESR, Safari > 7, not dead"
],
"dependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"datatables.net": "^2.0.8",
"rollup": "^4.9.0",
"sass": "^1.77.8",
"uglify-js": "^3.17.4"
}
}