forked from bootboxjs/bootbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "bootbox",
"version": "5.5.1",
"description": "Wrappers for JavaScript alert(), confirm(), prompt(), and other flexible dialogs using the Bootstrap framework",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./node_modules/.bin/karma start"
},
"repository": {
"type": "git",
"url": "git://github.com/makeusabrew/bootbox.git"
},
"author": "Nick Payne <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "bootbox.all.js",
"files": [
"dist/*.js",
"bootbox.js",
"bootbox.locales.js",
"bootbox.all.js"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"grunt": "^1.0.4",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-karma": "^3.0.2",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^2.0.3",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^4.0.2",
"lolex": "5.1.1",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"uglify-js": "^3.7.0",
"webpack": "^4.41.2"
},
"dependencies": {
"bootstrap": "^4.4.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.0"
}
}