UNPKG

simple-package-meta

Version:

Easy access to information about the running package.

136 lines 3.1 kB
{ "name": "simple-package-meta", "version": "0.0.3", "description": "Easy access to information about the running package.", "main": "source/main.js", "repository": { "type": "git", "url": "git+https://github.com/Anadian/simple-package-meta.git" }, "keywords": [ "package", "module", "meta", "data", "json", "name", "version", "free", "libre", "open", "source", "mit" ], "author": "Anadian", "license": "MIT", "bugs": { "url": "https://github.com/Anadian/simple-package-meta/issues" }, "homepage": "https://github.com/Anadian/simple-package-meta#readme", "type": "module", "engines": { "node": ">=12" }, "eslintConfig": { "env": { "commonjs": true, "es6": true, "node": true }, "extends": "eslint:recommended", "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly" }, "parserOptions": { "ecmaVersion": 11 }, "rules": { "no-unused-vars": [ "warn" ], "no-useless-escape": "off", "no-empty": "warn" } }, "standard-version": { "types": [ { "type": "build", "section": "Build", "hidden": false }, { "type": "ci", "section": "Continuous Integration", "hidden": false }, { "type": "chore", "section": "Chores", "hidden": false }, { "type": "docs", "section": "Documentation", "hidden": false }, { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug Fixes", "hidden": false }, { "type": "perf", "section": "Performance", "hidden": false }, { "type": "refactor", "section": "Refactoring", "hidden": false }, { "type": "style", "section": "Code Style", "hidden": false }, { "type": "test", "section": "Tests", "hidden": false } ] }, "devDependencies": { "ava": "^4.3.1", "c8": "^7.12.0", "coveralls": "^3.1.1", "extract-documentation-comments": "^0.3.12", "hjson": "^3.2.2", "standard-version": "^9.5.0" }, "dependencies": { "env-paths": "^3.0.0", "parse-json": "^6.0.2", "pkg-up": "^4.0.0" }, "packageManager": "pnpm@7.5.2", "scripts": { "test": "ava -v ./source/main.test.js", "coverage": "c8 pnpm test", "coverage-report": "c8 report -r=text-lcov > coverage/lcov.txt", "ci": "pnpm coverage && pnpm coverage-report", "lint": "eslint ./source/main.js", "generate-docs": "extract-documentation-comments -I source/main.js -O API.md", "update-config": "hjson -j ci/github-actions.hjson | json2yaml --preserve-key-order -o .github/workflows/ci.yml", "update-deps": "npm-check-updates -u", "release": "standard-version", "publish-release": "git push --follow-tags origin main && pnpm publish" } }