bom2table/package.json
2021-03-07 19:23:41 +00:00

33 lines
914 B
JSON

{
"name": "bom2table",
"version": "1.1.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/'",
"dev": "watchify ./src/bom2table.js -o ./dist/bundle.js -v"
},
"author": "nplayfair",
"license": "MIT",
"dependencies": {
"csvtojson": "^2.0.10",
"js-beautify": "^1.13.5",
"pretty": "^2.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"tinyify": "^3.0.0",
"watchify": "^4.0.0"
}
}