-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.28 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.28 KB
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
{
"name": "@vizuaalog/bulmajs",
"version": "0.12.2",
"description": "Unofficial javascript extension to the awesome Bulma CSS framework.",
"main": "src/bulma.js",
"author": "Thomas Erbe <vizuaalog@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VizuaaLOG/BulmaJS.git"
},
"bugs": {
"url": "https://github.com/VizuaaLOG/BulmaJS/issues"
},
"homepage": "https://github.com/VizuaaLOG/BulmaJS",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"babel-loader": "^10.1.1",
"bulma": "^0.7.1",
"eslint": "^10.2.1",
"globals": "^16.5.0",
"node-qunit-puppeteer": "^2.2.1",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-glob-entry": "^2.1.1"
},
"scripts": {
"lint": "eslint src",
"dev": "webpack --config webpack.config.js --mode development",
"production": "webpack --config webpack.config.js --mode production",
"watch": "webpack --config webpack.config.js --mode development --watch",
"test": "node-qunit-puppeteer ./tests/test-runner.html 10000 '--allow-file-access-from-files --no-sandbox'"
}
}