mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-16 13:00:30 -05:00
18 lines
506 B
JSON
18 lines
506 B
JSON
{
|
|
"name": "@freecodecamp/github-tools",
|
|
"description": "Tools to help maintain freecodecamp.org's Open Source Codebase on GitHub",
|
|
"private": true,
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap",
|
|
"postinstall": "npm run bootstrap",
|
|
"format": "prettier --write es5 './**/*.{js,json}' && npm run lint",
|
|
"lint": "eslint ./**/*.js --fix"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.9.0",
|
|
"eslint-config-freecodecamp": "^1.1.1",
|
|
"lerna": "^3.5.1",
|
|
"prettier": "^1.15.2"
|
|
}
|
|
}
|