bom2table/package.json

31 lines
823 B
JSON

{
"name": "bom2table",
"version": "1.0.0",
"description": "",
"main": "bom2table.js",
"scripts": {
"build": "npm run bundle && npm run copy:html && npm run copy:css",
"bundle": "browserify ./src/bom2table.js -p tinyify -o ./dist/bundle.js",
"copy:html": "cpy 'src/*.html' 'dist/'",
"copy:css": "cpy 'src/*.css' 'dist/'"
},
"author": "nplayfair",
"license": "MIT",
"dependencies": {
"browserify": "^17.0.0",
"cpy-cli": "^3.1.1",
"csvtojson": "^2.0.10",
"js-beautify": "^1.13.5",
"pretty": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"tinyify": "^3.0.0"
}
}