-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.64 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.64 KB
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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "jadu-pulsar",
"version": "15.0.0",
"repository": {
"type": "git",
"url": "https://github.com/jadu/pulsar.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"nyc": {
"require": ["@babel/register"],
"extension": [".js", ".jsx"],
"reporter": ["text-summary", "lcov"],
"exclude": [
"tests/**",
"docs/**",
"node_modules/**",
"libs/**"
],
"all": true
},
"overrides": {
"minimist": "^1.2.6",
"form-data": "2.5.5",
"tar-fs": "2.1.4",
"axios": "^0.30.2",
"lodash": "^4.17.21",
"ws": "^8.17.1",
"serialize-javascript": "^6.0.2",
"serve-static": "1.16.0"
},
"scripts": {
"start": "docker compose up -d && grunt",
"coverage": "nyc mochify --transform [ babelify ] --reporter spec ./tests/harness/common './tests/js/web/**/*Test.js'",
"test": "npm run test:headless",
"build:tests": "grunt javascript:tests",
"build:tests:watch": "grunt javascript:tests:watch",
"test:headless": "mochify --reporter spec --transform [ babelify ] ./tests/harness/common './tests/js/web/**/*Test.js'",
"test:browser": "npm run build:tests && open ./tests/js/web/index.html",
"test:browser:watch": "npm run build:tests:watch"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.28.3",
"aliasify": "^2.1.0",
"axios": "^0.30.2",
"babel-core": "^7.0.0-bridge",
"babel-preset-es2015": "npm:@babel/preset-env@7.28.5",
"babelify": "^10.0.0",
"browser-sync": "^3.0.4",
"browserify": "17.0.0",
"browserify-istanbul": "^2.0.0",
"browserify-shim": "^3.8.16",
"chai": "^4.3.6",
"chai-dom": "^1.11.0",
"chai-hiff": "^1.0.0",
"core-js": "^3.30.2",
"dart-sass": "^1.25.0",
"grunt": "^1.5.2",
"grunt-asciify": "^0.2.2",
"grunt-autoprefixer": "^3.0.4",
"grunt-browser-sync": "^2.2.0",
"grunt-browserify": "^5.0.0",
"grunt-bump": "^0.7.2",
"grunt-casperjs": "^2.2.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-gh-pages": "^4.0.0",
"grunt-leading-indent": "^0.2.0",
"grunt-mocha": "^1.2.0",
"grunt-notify": "^0.4.3",
"grunt-real-favicon": "^0.2.4",
"grunt-sass": "^3.1.0",
"grunt-sass-replace": "^0.1.18",
"grunt-string-replace": "^1.3.3",
"grunt-text-replace": "^0.4.0",
"jsdom": "^16.5.0",
"matchdep": "^1.0.1",
"minifyify": "^6.3.0",
"mocha": "^10.8.2",
"mochify": "^9.2.0",
"nyc": "^17.1.0",
"require-globify": "^1.4.1",
"sinon": "^2.4.1",
"sinon-chai": "^2.8.8",
"sinon-jquery": "^1.0.3",
"uglifyify": "^3.0.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"chartist": "^0.11.4",
"datatables.net": "^1.13.4",
"datatables.net-buttons": "^1.7.1",
"datatables.net-buttons-dt": "^1.7.1",
"datatables.net-dt": "^1.13.6",
"datatables.net-responsive": "^2.5.0",
"datatables.net-responsive-dt": "^2.5.0",
"datatables.net-select": "^1.7.1",
"datatables.net-select-dt": "^1.7.1",
"input-length": "^1.0.1",
"jquery": "^3.7.1",
"jquery-countdown": "^2.2.0",
"jquery-placeholder": "^2.3.1",
"jquery-sticky": "^1.0.4",
"jquery-ui": "^1.13.3",
"jstree": "^3.3.16",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"normalize.css": "^8.0.1",
"pikaday": "^1.8.2",
"pulsar-date-picker": "^1.0.0",
"select2": "github:jadu/selectWoo#jadu-1.1.5",
"spectrum-colorpicker": "^1.8.1",
"timepicker": "^1.14.1",
"tippy.js": "^5.2.1"
}
}