Skip to content

Commit

Permalink
chore: Cleanup package.json (#1087)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerivec authored Jun 11, 2024
1 parent 5ceac0b commit 2b5b074
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@
"homepage": "https://github.com/Koenkk/zigbee-herdsman",
"keywords": [
"zigbee",
"cc253x"
"zstack",
"emberznet",
"deconz",
"zigate"
],
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -75,12 +78,12 @@
"url": "git+https://github.com/Koenkk/zigbee-herdsman.git"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"start": "./node_modules/.bin/tsc -w",
"build": "tsc",
"start": "tsc -w",
"test": "jest test --silent --maxWorkers=50%",
"test-with-coverage": "jest test --silent --maxWorkers=50% --coverage",
"test-watch": "jest test --silent --maxWorkers=25% --watch",
"eslint": "node_modules/.bin/eslint . --ext .ts --max-warnings=0",
"eslint": "eslint . --ext .ts --max-warnings=0",
"docs": "typedoc --tsconfig typedoc-tsconfig.json",
"clean": "rimraf temp coverage dist",
"prepack": "npm run clean && npm run build"
Expand All @@ -94,6 +97,9 @@
"lines": 100,
"statements": 100
}
}
},
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}

0 comments on commit 2b5b074

Please sign in to comment.