discord-open-source/package.json

17 lines
451 B
JSON
Raw Permalink Normal View History

2018-02-15 00:02:27 +00:00
{
"name": "discord-open-source",
"version": "1.0.0",
2019-01-29 20:30:04 +00:00
"main": "communities.json",
"scripts": {
2019-01-30 00:29:54 +00: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 20:30:04 +00:00
"fmt": "prettier --write communities.json"
},
"devDependencies": {
2019-01-30 00:29:54 +00:00
"chalk": "^2.4.2",
"node-fetch": "^2.3.0",
2019-01-29 20:30:04 +00:00
"prettier": "^1.16.1"
}
2018-02-15 00:02:27 +00:00
}