packages/compiler-webpack/package.json
{
"name": "@bestest/compiler-webpack",
"version": "1.0.1",
"description": "Webpack compiler for Bestest benchmarking tool.",
"publishConfig": {
"access": "public"
},
"main": "./index",
"types": "./index.d.ts",
"scripts": {
"clean": "rimraf lib/**/*.{js,d.ts} index.{js,d.ts}",
"build": "npm run clean && tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json -c ../../tslint.json",
"ts-check": "tsc -p tsconfig.json --noEmit",
"test": "npm run ts-check && npm run lint",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rangoo94/bestest.git"
},
"bugs": {
"url": "https://github.com/rangoo94/bestest/issues"
},
"keywords": [
"bestest",
"compile",
"compiler",
"code",
"webpack",
"es6"
],
"author": "Dawid Rusnak <dawid@drcode.pl>",
"license": "MIT",
"peerDependencies": {
"webpack": ">=4"
},
"devDependencies": {
"@types/memory-fs": "^0.3.2",
"@types/node": "^12.7.0",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"dependencies": {
"memory-fs": "^0.4.1",
"@bestest/compiler": "^1.0.0",
"@bestest/fs": "^1.1.0",
"@bestest/utils": "^1.0.0"
}
}