UNPKG

@codibre/confs

Version:

A simple package to centralize IDE configuration of all codibre's projects

100 lines (99 loc) 3.06 kB
{ "name": "@codibre/confs", "version": "1.1.2", "description": "A simple package to centralize IDE configuration of all codibre's projects", "main": "index.js", "files": [ "dist", "templates/**", "*.json", "*.js" ], "scripts": { "test": "mocha", "clear": "npm run clear:build && npm run clear:modules", "clear:build": "del-cli ./dist", "clear:modules": "del-cli ./node_modules", "prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo", "build": "tsc", "test:coverage": "nyc npm test", "test:coverage:lcovonly": "nyc --reporter=lcov npm test", "preaction:verify:update-modules": "npm run action:verify:update-modules:check", "action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean", "action:verify:update-modules:clean": "del-cli .check", "release:update-changelog": "ts-node src/index.ts update-changelog", "postversion": "npm run release:update-changelog", "prepublishOnly": "npm i && npm run build && npm run test:coverage", "lint": "npm run lint:format && npm run lint:style", "lint:fix": "npm run lint:format:fix && npm run lint:style:fix", "lint:format": "prettier --check '{src,test}/**/*.ts'", "lint:format:fix": "prettier --write '{src,test}/**/*.ts'", "lint:style": "eslint 'src/**' 'test/**'", "lint:style:fix": "eslint 'src/**' 'test/**' --fix", "prepare": "husky install" }, "bin": { "codibre-confs": "dist/index.js" }, "author": "Thiago Santos", "license": "MIT", "homepage": "https://bitbucket.org/c/ts-application-config#readme", "peerDependencies": { "eslint": "*", "prettier": "*", "ts-node": "*", "typescript": "*" }, "dependencies": { "commander": ">=7.2.0", "del-cli": "*", "tsconfig-paths": ">=3.9.0" }, "devDependencies": { "@types/chai": "^4.2.17", "@types/chai-as-promised": "^7.1.3", "@types/mocha": "^8.2.2", "@types/node": "^15.0.1", "@types/recursive-readdir": "^2.2.0", "@types/sinon": "^10.0.0", "@types/sinon-chai": "^3.2.5", "@typescript-eslint/eslint-plugin": "^4.22.0", "@typescript-eslint/eslint-plugin-tslint": "^4.22.0", "@typescript-eslint/parser": "^4.22.0", "chai": "^4.3.4", "chai-as-promised": "^7.1.1", "chai-callslike": "*", "dotenv": "^8.2.0", "eslint": "^7.23.0", "eslint-plugin-unused-imports": ">=1.1.1", "husky": "^6.0.0", "mocha": "^9.2.1", "npm-add-script": "^1.1.0", "nyc": "^15.1.0", "prettier": "^2.2.1", "recursive-readdir": "^2.2.2", "sinon": "^10.0.0", "sinon-chai": "^3.6.0", "ts-node": "^8.10.2", "typescript": "^3.9.5" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/Codibre/confs.git" }, "keywords": [ "typescript", "standards", "eslint", "nyc", "mocha", "unit", "test" ], "bugs": { "url": "https://github.com/Codibre/confs/issues" } }