forked from jibe914/Bootstrap-Confirmation
-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "bootstrap-confirmation2",
"version": "4.2.1",
"homepage": "https://bootstrap-confirmation.js.org",
"description": "Bootstrap plugin for on-place confirm boxes using Popover",
"license": "Apache-2.0",
"authors": [
{
"name": "Nimit Suwannagate",
"email": "[email protected]"
},
{
"name": "Damien \"Mistic\" Sorel",
"email": "[email protected]",
"homepage": "https://www.strangeplanet.fr"
}
],
"main": "dist/bootstrap-confirmation.js",
"files": [
"dist/",
"src/confirmation.js"
],
"keywords": [
"bootstrap",
"confirmation",
"popup"
],
"peerDependencies": {
"bootstrap": "^4.0.0",
"jquery": "1.9.1 - 3",
"popper.js": "^1.16.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/preset-env": "^7.5.0",
"babel-eslint": "^10.0.1",
"bootstrap": "^4.2.1",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.10.0",
"jquery": "^3.3.1",
"live-server": "^1.2.0",
"nodemon": "^2.0.0",
"npm-run-all": "^4.1.2",
"popper.js": "^1.12.9",
"rollup": "^2.0.2",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-replace": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/mistic100/Bootstrap-Confirmation.git"
},
"bugs": {
"url": "https://github.com/mistic100/Bootstrap-Confirmation/issues"
},
"scripts": {
"compile": "rollup --config rollup.config.js --file dist/bootstrap-confirmation.js src/confirmation.js",
"lint": "eslint src",
"server": "live-server --watch=dist,example --open=example",
"start": "npm run compile && npm-run-all --parallel watch server",
"test": "npm run lint",
"watch": "nodemon --watch src --ext js --exec \"npm run compile\""
}
}