@kibibit/nconf-hjson
Version:
Add support for json with comments files in nconf
147 lines (146 loc) • 4.1 kB
JSON
{
"name": "@kibibit/nconf-hjson",
"version": "1.0.0",
"description": "Add support for json with comments files in nconf",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"lint": "eslint -c ./.eslintrc.js \"{src,apps,libs,test,examples}/**/*.ts\"",
"lint:fix": "eslint -c ./.eslintrc.js \"{src,apps,libs,test,examples}/**/*.ts\" --fix",
"contributors:all": "cross-env HUSKY=0 node ./tools/get-all-contributors.js",
"contributors:add": "cross-env HUSKY=0 all-contributors add",
"contributors:generate": "cross-env HUSKY=1 all-contributors generate",
"prepare": "husky install",
"semantic-release": "cross-env HUSKY=0 semantic-release",
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:cov": "jest --coverage --verbose",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/Kibibit/nconf-hjson.git"
},
"keywords": [
"nconf",
"jsonc"
],
"author": "thatkookooguy <neilkalman@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kibibit/nconf-hjson/issues"
},
"homepage": "https://github.com/Kibibit/nconf-hjson#readme",
"dependencies": {
"hjson": "^3.2.2"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-angular": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/hjson": "^2.4.3",
"@types/jest": "^27.0.2",
"@types/nconf": "^0.10.1",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"all-contributors-cli": "^6.20.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-conventional-changelog-emoji": "^0.1.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^7.0.2",
"jest": "^27.3.1",
"jest-mock-process": "^1.4.1",
"jest-stare": "^2.3.0",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1",
"semantic-release-cli": "^5.4.4",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-emoji"
}
},
"release": {
"branches": [
{
"name": "main"
},
{
"name": "beta",
"channel": "beta",
"prerelease": "beta"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "achievibit changelog"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}