forked from thednp/bootstrap.native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "bootstrap.native",
"version": "3.0.0",
"description": "Native JavaScript for Bootstrap, the sweetest JavaScript library without jQuery.",
"main": "dist/bootstrap-native.js",
"module": "dist/bootstrap-native.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"help": "rollup --help",
"build": "npm-run-all --parallel build-*",
"custom": "rollup -c --environment",
"build-esm": "rollup --environment FORMAT:esm,MIN:false -c",
"build-esm-min": "rollup --environment FORMAT:esm,MIN:true -c",
"build-umd": "rollup --environment FORMAT:umd,MIN:false -c",
"build-umd-min": "rollup --environment FORMAT:umd,MIN:true -c",
"watch": "rollup --environment FORMAT:umd,MIN:false -c -w"
},
"browserslist": [
"last 2 versions",
"not <= 1%",
"not IE 10"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/bootstrap.native.git"
},
"keywords": [
"bootstrap.native",
"bootstrap",
"vanilla js",
"native javascript",
"vanilla javascript"
],
"author": "dnp_theme",
"license": "MIT",
"bugs": {
"url": "https://github.com/thednp/bootstrap.native/issues"
},
"homepage": "https://thednp.github.io/bootstrap.native/",
"dependencies": {
"shorter-js": "^0.0.4"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-terser": "^5.3.0"
}
}