@sap/generator-cap-project
Version:
Creates a new SAP Cloud Application Programming Model project.
40 lines • 945 B
JSON
{
"name": "@yeoman/namespace",
"version": "1.0.1",
"private": false,
"description": "Namespace parsing for yeoman's generator/environment stack",
"keywords": [
"yeoman",
"api"
],
"homepage": "http://yeoman.io",
"repository": "yeoman/yeoman-api",
"license": "MIT",
"author": "The Yeoman Team",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf dist",
"clean-all": "npm run clean && rimraf node_modules",
"precommit": "lint-staged",
"prepare": "npm run build",
"test": "vitest run --coverage"
},
"engines": {
"node": "^16.13.0 || >=18.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"gitHead": "e0b4188a17e10dd8ec563ee9baa31574cb77d7fe"
}