forked from bootboxjs/bootbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
{
"name": "bootbox",
"version": "6.0.0",
"description": "Wrappers for JavaScript alert(), confirm(), prompt(), and other flexible dialogs using the Bootstrap framework",
"directories": {
"test": "tests"
},
"scripts": {
"test": "karma start karma.conf.legacy.js && karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git://github.com/makeusabrew/bootbox.git"
},
"author": "Nick Payne <nick@kurai.co.uk>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "bootbox.js",
"files": [
"dist/*.js"
],
"devDependencies": {
"@sinonjs/fake-timers": "6.0.0",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"grunt": "^1.0.4",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.1",
"grunt-jsbeautifier": "^0.2.13",
"grunt-karma": "^4.0.2",
"karma": "^6.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"puppeteer": "^14.4.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"uglify-js": "^3.16.0",
"webpack": "^5.73.0"
},
"peerDependencies": {
"@popperjs/core": "^2.0.0",
"bootstrap": "^4.4.0 || ^5.0.0",
"jquery": "^3.5.1"
}
}