nx/packages/plugin/package.json

40 lines
953 B
JSON

{
"name": "@nx/plugin",
"version": "0.0.1",
"private": false,
"description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/plugin"
},
"keywords": [
"Monorepo",
"Nx",
"CLI"
],
"main": "./index",
"types": "./index.d.ts",
"author": "Nrwl",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"generators": "./generators.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"dependencies": {
"tslib": "^2.3.0",
"@nx/devkit": "file:../devkit",
"@nx/jest": "file:../jest",
"@nx/js": "file:../js",
"@nx/eslint": "file:../eslint"
},
"publishConfig": {
"access": "public"
}
}