99 lines
2.6 KiB
JSON
99 lines
2.6 KiB
JSON
{
|
|
"name": "@nestjs/schematics",
|
|
"version": "9.1.0",
|
|
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"postbuild": "npm run copy:collection && npm run copy:lib",
|
|
"build": "rm -rf dist && tsc --project tsconfig.lib.json",
|
|
"clean": "gulp clean:src",
|
|
"copy:collection": "cpx src/collection.json dist && cpx 'src/lib/**/schema.json' dist/lib",
|
|
"copy:lib": "cpx 'src/lib/**/{files,workspace}/**/*.*' dist/lib && cpx 'src/lib/**/{files,workspace}/**/.!(gitignore)' dist/lib",
|
|
"lint": "eslint '{src,test}/**/*.ts' --fix",
|
|
"prepublish:next": "npm run build",
|
|
"publish:next": "npm publish --access public --tag next",
|
|
"prepublish:npm": "npm run build",
|
|
"publish:npm": "npm publish --access public",
|
|
"test": "npm run clean && NODE_ENV=test jest -w 1 --no-cache --config jest.json",
|
|
"test:dev": "NODE_ENV=test npm run -s test -- --watchAll",
|
|
"prerelease": "npm run build",
|
|
"release": "release-it",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nestjs/schematics.git"
|
|
},
|
|
"contributors": [
|
|
"ThomRick",
|
|
"Kamil Mysliwiec",
|
|
"John Biundo"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nestjs/schematics/issues"
|
|
},
|
|
"homepage": "https://github.com/nestjs/schematics#readme",
|
|
"dependencies": {
|
|
"@angular-devkit/core": "15.2.4",
|
|
"@angular-devkit/schematics": "15.2.4",
|
|
"jsonc-parser": "3.2.0",
|
|
"pluralize": "8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.5.1",
|
|
"@commitlint/config-angular": "17.4.4",
|
|
"@types/jest": "29.5.0",
|
|
"@types/node": "18.15.11",
|
|
"@typescript-eslint/eslint-plugin": "5.57.0",
|
|
"@typescript-eslint/parser": "5.57.0",
|
|
"cpx": "1.5.0",
|
|
"eslint": "8.37.0",
|
|
"eslint-config-prettier": "8.8.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"gulp": "4.0.2",
|
|
"gulp-clean": "0.4.0",
|
|
"husky": "8.0.3",
|
|
"jest": "29.5.0",
|
|
"nyc": "15.1.0",
|
|
"release-it": "15.9.3",
|
|
"ts-jest": "29.0.5",
|
|
"ts-node": "10.9.1",
|
|
"typescript": "4.9.5"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=4.3.5"
|
|
},
|
|
"schematics": "./dist/collection.json",
|
|
"nyc": {
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
],
|
|
"reporter": [
|
|
"text-summary",
|
|
"html"
|
|
],
|
|
"sourceMap": true,
|
|
"instrument": true
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{ts,json}": []
|
|
}
|
|
}
|