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.
81 lines
2.1 KiB
81 lines
2.1 KiB
3 years ago
|
{
|
||
|
"name": "webpack-virtual-modules",
|
||
|
"version": "0.4.3",
|
||
|
"description": "Webpack Virtual Modules",
|
||
|
"main": "lib/index.js",
|
||
|
"scripts": {
|
||
|
"clean": "rm -rf ./lib",
|
||
|
"build": "tsc -p tsconfig.build.json",
|
||
|
"watch": "tsc -p tsconfig.build.json -w",
|
||
|
"tests": "jest",
|
||
|
"tests:watch": "jest --watch",
|
||
|
"test": "yarn lint && yarn tests",
|
||
|
"lint": "eslint --fix src/**/*.ts",
|
||
|
"prepack": "yarn clean && yarn build"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/sysgears/webpack-virtual-modules.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"webpack",
|
||
|
"webpack-plugin",
|
||
|
"virtual",
|
||
|
"modules"
|
||
|
],
|
||
|
"author": "SysGears INC",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/sysgears/webpack-virtual-modules/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/sysgears/webpack-virtual-modules#readme",
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.4.5",
|
||
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
||
|
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
|
||
|
"@babel/preset-typescript": "^7.3.3",
|
||
|
"@babel/register": "^7.5.5",
|
||
|
"@types/jest": "^24.0.6",
|
||
|
"@types/node": "^11.11.3",
|
||
|
"@types/tmp": "^0.1.0",
|
||
|
"@types/webpack": "^4.32.1",
|
||
|
"@typescript-eslint/eslint-plugin": "^1.13.0",
|
||
|
"@typescript-eslint/parser": "^1.13.0",
|
||
|
"babel-jest": "^26.6.1",
|
||
|
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
|
||
|
"eslint": "^7.12.1",
|
||
|
"eslint-config-prettier": "^6.15.0",
|
||
|
"eslint-plugin-jest": "^24.1.0",
|
||
|
"eslint-plugin-prettier": "^3.1.4",
|
||
|
"husky": "^4.3.0",
|
||
|
"jest": "^26.6.1",
|
||
|
"lint-staged": "^10.5.0",
|
||
|
"memory-fs": "^0.5.0",
|
||
|
"prettier": "^2.1.2",
|
||
|
"tmp": "^0.2.1",
|
||
|
"typescript": "^4.0.5",
|
||
|
"webpack": "^5.3.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"*.js",
|
||
|
"*.d.ts"
|
||
|
],
|
||
|
"publishConfig": {
|
||
|
"main": "lib/index.js",
|
||
|
"types": "lib/index.d.ts"
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.ts": [
|
||
|
"eslint --fix -c tslint.json",
|
||
|
"git add"
|
||
|
]
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"singleQuote": true,
|
||
|
"parser": "typescript"
|
||
|
},
|
||
|
"husky": {
|
||
|
"pre-commit": "lint-staged"
|
||
|
}
|
||
|
}
|