forked from bootboxjs/bootbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "bootbox",
"version": "5.3.2",
"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": "^3.5.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"uglify-js": "^3.1.4",
"grunt": "^1.0.3",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-karma": "^3.0.1",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-junit-reporter": "^1.1.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^6.0.0",
"sinon": "^1.7.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"jquery": ">=1.12.0",
"popper.js": ">=1.12.9",
"bootstrap": ">=3.0.0"
}
}