UNPKG

@ngx-rocket/core

Version:

Core generator for creating ngX-Rocket add-ons

81 lines (80 loc) 1.78 kB
{ "name": "@ngx-rocket/core", "version": "7.0.5", "description": "Core generator for creating ngX-Rocket add-ons", "repository": "ngx-rocket/core", "main": "lib", "scripts": { "lint": "xo", "lint:fix": "xo --fix", "test": "npm run lint -s && jest", "toc": "doctoc README.md --title '## Table of Contents' --maxlevel 4", "release:check": "semantic-release --dry-run" }, "keywords": [ "ngx", "rocket", "core", "generator", "yeoman", "add-on" ], "author": { "name": "Yohan Lasorsa", "url": "https://twitter.com/sinedied" }, "license": "MIT", "homepage": "https://github.com/ngx-rocket/core", "bugs": { "url": "https://github.com/ngx-rocket/core/issues" }, "dependencies": { "chalk": "^4.1.0", "ejs": "^3.1.5", "ignore": "^5.1.8", "lodash": "^4.17.20", "node-dir": "^0.1.14", "yeoman-generator": "^5.4.0" }, "devDependencies": { "doctoc": "^2.0.0", "jest": "^29.3.1", "semantic-release": "^19.0.2", "semantic-release-npm-github": "^3.0.0", "xo": "^0.53.1" }, "engines": { "node": ">=14.0.0" }, "xo": { "space": true, "prettier": true, "envs": [ "node", "jest" ], "rules": { "unicorn/prefer-default-parameters": "off", "unicorn/prefer-module": "off", "unicorn/no-array-for-each": "off", "unicorn/prefer-spread": "off", "max-params": "off", "object-shorthand": "off", "unicorn/prefer-node-protocol": "off", "unicorn/switch-case-braces": "off" } }, "prettier": { "trailingComma": "none" }, "release": { "extends": "semantic-release-npm-github", "branches": [ "main" ] }, "files": [ "lib/*.js", "!lib/*.spec.js" ] }