mirror of
https://github.com/wekan/wekan.git
synced 2026-01-31 13:45:17 +01:00
I've just discovered that the reason NPM outputs a giant "npm ERR!" message asking to contact the author of the library and suggesting that it’s most likely “not a problem with npm itself” when I run "npm run lint" and I forgot a semicolon is because the return code of an NPM script has to be 0. So this commit adds "exit 0;" at the end of the NPM commands.
25 lines
528 B
JSON
25 lines
528 B
JSON
{
|
|
"name": "wekan",
|
|
"version": "0.10.1",
|
|
"description": "The open-source Trello-like kanban",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint .; exit 0",
|
|
"test": "npm run --silent lint; exit 0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/wekan/wekan.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/wekan/wekan/issues"
|
|
},
|
|
"homepage": "https://wekan.io",
|
|
"devDependencies": {
|
|
"eslint": "^2.0.0"
|
|
},
|
|
"dependencies": {
|
|
"xss": "^0.2.13"
|
|
}
|
|
}
|