fomantic-ui-webpack
Version:
Bundle Fomantic UI JavaScript into a webpack-friendly module
54 lines (53 loc) • 1.05 kB
JSON
{
"name": "fomantic-ui-webpack",
"version": "0.1.3",
"description": "Bundle Fomantic UI JavaScript into a webpack-friendly module",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/flipp-oss/fomantic-ui-webpack.git"
},
"exports": {
"require": "./index.js",
"import": "./esm/wrapper.js"
},
"keywords": [
"fomantic",
"semantic",
"webpack",
"ui"
],
"author": "Daniel Orner",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"jquery": "^3.5.1"
},
"devDependencies": {
"eslint": "^7.16.0",
"fomantic-ui": "^2.8.7"
},
"scripts": {
"build": "./build.js"
},
"eslintConfig": {
"rules": {
"valid-jsdoc": 0,
"func-style": 0,
"no-use-before-define": 0,
"camelcase": 1,
"no-unused-vars": 1,
"no-alert": 1,
"no-console": [
2,
{
"allow": [
"warn",
"error"
]
}
],
"no-underscore-dangle": 0
}
}
}