-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
93 lines (93 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@creativebulma/bulma-collapsible",
"version": "1.0.3",
"description": "Make any Bulma element collapsible with ease",
"main": "./dist/js/bulma-collapsible.min.js",
"style": "./dist/bulma-collapsible.min.css",
"sass": "./src/sass/index.sass",
"browsers": [
"> 2%",
"ie 11",
"safari > 9"
],
"scripts": {
"develop": "gulp watch",
"build": "gulp",
"docs": "cd ./docs && jekyll serve --incremental --config _config.local.yml -o",
"test": "jest"
},
"author": "CreativeBulma <support@creativebulma.net>",
"bugs": {
"url": "https://github.com/CreativeBulma/bulma-collapsible/issues"
},
"homepage": "https://demo.creativebulma.net/components/bulma-collapsible/1.0/",
"keywords": [
"collapsible",
"accordion",
"expandable",
"ui",
"component",
"extension",
"html",
"html5",
"css3",
"sass",
"javascript",
"js",
"bulma",
"bulmaio",
"bulma.io"
],
"dependencies": {
"bulma": "latest"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.4",
"ansi-colors": "^3.2.4",
"autoprefixer": "^9.5.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.5",
"camelcase": "^5.3.1",
"css-loader": "^2.1.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.1",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-nop": "0.0.3",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"jest": "^24.7.1",
"jest-environment-jsdom": "^24.7.1",
"jest-environment-node": "^24.7.1",
"jest-puppeteer": "^4.1.1",
"node-sass": "^4.12.0",
"puppeteer": "^1.15.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-stream": "^5.2.1"
},
"release": {
"prepare": [
"@semantic-release/npm",
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
}
]
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
]
}