StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.7 KiB
112 lines
3.7 KiB
{
|
|
"_from": "clean-webpack-plugin",
|
|
"_id": "clean-webpack-plugin@3.0.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==",
|
|
"_location": "/clean-webpack-plugin",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "tag",
|
|
"registry": true,
|
|
"raw": "clean-webpack-plugin",
|
|
"name": "clean-webpack-plugin",
|
|
"escapedName": "clean-webpack-plugin",
|
|
"rawSpec": "",
|
|
"saveSpec": null,
|
|
"fetchSpec": "latest"
|
|
},
|
|
"_requiredBy": [
|
|
"#USER",
|
|
"/"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz",
|
|
"_shasum": "a99d8ec34c1c628a4541567aa7b457446460c62b",
|
|
"_spec": "clean-webpack-plugin",
|
|
"_where": "/Users/anchaa/Documents/Research/iStacking_code/istacking/frontend",
|
|
"author": {
|
|
"name": "John Agan",
|
|
"email": "johnagan@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/johnagan/clean-webpack-plugin/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"@types/webpack": "^4.4.31",
|
|
"del": "^4.1.1"
|
|
},
|
|
"deprecated": false,
|
|
"description": "A webpack plugin to remove/clean your build folder(s).",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.4.4",
|
|
"@babel/core": "^7.4.4",
|
|
"@babel/preset-env": "^7.4.4",
|
|
"@babel/preset-typescript": "^7.3.3",
|
|
"@chrisblossom/eslint-config": "^5.0.0",
|
|
"@types/jest": "^24.0.13",
|
|
"@types/node": "^12.0.2",
|
|
"@types/read-pkg-up": "^3.0.1",
|
|
"babel-jest": "^24.8.0",
|
|
"codecov": "^3.5.0",
|
|
"cross-env": "^5.2.0",
|
|
"del-cli": "^1.1.0",
|
|
"eslint": "^5.16.0",
|
|
"execa": "^1.0.0",
|
|
"husky": "^2.3.0",
|
|
"jest": "^24.8.0",
|
|
"lint-staged": "^8.1.7",
|
|
"listr": "^0.14.3",
|
|
"np": "^5.0.2",
|
|
"prettier": "^1.17.1",
|
|
"read-pkg-up": "^6.0.0",
|
|
"semver": "^6.0.0",
|
|
"temp-sandbox": "^3.0.0",
|
|
"typescript": "^3.4.5",
|
|
"webpack": "^4.32.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.9.0"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"homepage": "https://github.com/johnagan/clean-webpack-plugin",
|
|
"keywords": [
|
|
"webpack",
|
|
"plugin",
|
|
"clean",
|
|
"node"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/clean-webpack-plugin.js",
|
|
"name": "clean-webpack-plugin",
|
|
"peerDependencies": {
|
|
"webpack": "*"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/johnagan/clean-webpack-plugin.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run build.compile && npm run build.types",
|
|
"build.compile": "cross-env NODE_ENV=production babel src -d dist --verbose --extensions .ts --ignore */**/*.d.ts,**/**/*.test.ts --source-maps",
|
|
"build.types": "cross-env NODE_ENV=production tsc --project tsconfig.types.json",
|
|
"clean": "del-cli --dot=true \"./dist/**/*\"",
|
|
"dev": "npm run clean && cross-env NODE_ENV=development babel -w src -d dist --verbose --extensions .ts --ignore */**/*.d.ts,**/**/*.test.ts --source-maps",
|
|
"format": "prettier \"**/*.{js,mjs,jsx,ts,tsx,json,scss,less,css,md,yml,yaml}\" --write",
|
|
"git-pre-commit": "lint-staged",
|
|
"git-pre-push": "npm run lint && npm run typescript && npm run test.all",
|
|
"lint": "eslint --ext .js,.ts .",
|
|
"lint.fix": "eslint --ext .js,.ts --fix .",
|
|
"prepublishOnly": "npm run build && npm run lint && npm run typescript && npm run test.all",
|
|
"release": "np",
|
|
"test": "jest",
|
|
"test.all": "node ./dev-utils/test-supported-webpack-versions.js",
|
|
"test.ci": "npm run build && npm run lint && npm run typescript && npm run test.all -- --ci",
|
|
"test.update": "jest --update-snapshot",
|
|
"test.watch": "jest --watch",
|
|
"typescript": "tsc"
|
|
},
|
|
"types": "dist/clean-webpack-plugin.d.ts",
|
|
"version": "3.0.0"
|
|
}
|
|
|