discord-open-source/package.json

17 lines
451 B
JSON
Raw Normal View History

2018-02-14 16:02:27 -08:00
{
"name": "discord-open-source",
"version": "1.0.0",
2019-01-29 12:30:04 -08:00
"main": "communities.json",
"scripts": {
2019-01-29 16:29:54 -08:00
"test": "npm run fmt-check && npm run validate-codes",
"validate-codes": "node ./validate.js",
"fmt-check": "prettier -c communities.json || (npm run fmt && git diff && exit 1)",
2019-01-29 12:30:04 -08:00
"fmt": "prettier --write communities.json"
},
"devDependencies": {
2019-01-29 16:29:54 -08:00
"chalk": "^2.4.2",
"node-fetch": "^2.3.0",
2019-01-29 12:30:04 -08:00
"prettier": "^1.16.1"
}
2018-02-14 16:02:27 -08:00
}