@gypsy-js/npm-template
Version:
The gypys NPM project template.
48 lines • 1.4 kB
JSON
{
"name": "@gypsy-js/npm-template",
"version": "1.0.0-beta.7",
"description": "The gypys NPM project template.",
"type": "module",
"main": "./dist/lib/esm/index.mjs",
"exports": {
".": {
"import": "./dist/lib/esm/index.mjs",
"require": "./dist/lib/cjs/index.cjs",
"default": "./dist/lib/esm/index.mjs"
}
},
"module": "/dist/lib/esm/index.mjs",
"types": "dist/lib/index.d.ts",
"bin": {
"gypsy-npm-tempate": "./dist/bin/cli.js"
},
"scripts": {
"clean": "node script/clean.js",
"build": "node script/build.js",
"cleanBuild": "node script/clean.js && node script/build.js",
"test": "node --enable-source-maps script/test.js && node --enable-source-maps dist/bin/cli.js",
"cleanBuildTest": "node script/clean.js && node script/build.js && node --enable-source-maps script/test.js && node --enable-source-maps dist/bin/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gypsy-js/npm-template.git"
},
"keywords": [
"npm-template",
"gypsy"
],
"author": "qivmvip AT gmail DOT com",
"license": "MIT",
"bugs": {
"url": "https://github.com/gypsy-js/npm-template/issues"
},
"homepage": "https://github.com/gypsy-js/npm-template#readme",
"devDependencies": {
"@rollup/plugin-eslint": "^8.0.1",
"chalk": "^5.0.0",
"rollup": "^2.67.2"
}
}