bom2table/package.json

36 lines
1020 B
JSON

{
"name": "bom2table",
"version": "1.2.0",
"description": "",
"main": "bom2table.js",
"scripts": {
"build": "npm run bundle && npm run copy:html && npm run copy:css",
"bundle": "browserify ./src/bom2table.ts -p [ tsify --noImplicitAny ] -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",
"lint": "eslint . --ext .ts"
},
"author": "nplayfair",
"license": "MIT",
"dependencies": {
"csvtojson": "^2.0.10",
"js-beautify": "^1.13.5",
"pretty": "^2.0.0"
},
"devDependencies": {
"@types/csvtojson": "^1.1.5",
"@types/js-beautify": "^1.13.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"browserify": "^17.0.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.22.0",
"prettier": "^2.2.1",
"tinyify": "^3.0.0",
"tsify": "^5.0.2",
"typescript": "^4.2.3",
"watchify": "^4.0.0"
}
}