dev-norms
Version:
Create and maintain developer norms and PR template for your project in your repo.
44 lines (43 loc) • 1.16 kB
JSON
{
"name": "dev-norms",
"description": "Create and maintain developer norms and PR template for your project in your repo.",
"version": "2.0.4",
"type": "module",
"author": "Doguhan Uluca <duluca@gmail.com> (https://expertlysimple.io)",
"license": "MIT",
"keywords": [
"developer",
"team",
"norms"
],
"main": "index.js",
"bin": {
"dev-norms": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/duluca/dev-norms.git"
},
"bugs": "https://github.com/duluca/dev-norms/issues",
"homepage": "https://github.com/duluca/dev-norms",
"scripts": {
"style": "prettier --check \"lib/**/*.js\"",
"style:fix": "npm run style -- --write",
"lint": "eslint \"{lib,tests}/**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"start": "node index.js",
"test": "node --test",
"test:ci": "node --test | tap-xunit > ./test_results/results.xml"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"ora": "^6.3.1"
},
"devDependencies": {
"@eslint/js": "^8.45.0",
"eslint": "^8.45.0",
"prettier": "^3.0.0",
"tap-xunit": "^2.4.1"
}
}