Newer
Older
{
"name": "@unlsoft/generators-in-class",
"version": "1.0.0",
"description": "Starter code for the in-class demonstration of generators.",
"private": true,
"license": "UNLICENSED",
"scripts": {
"postinstall:stylelint-config": "cd stylelint-config && npm install",
"postinstall:eslint-config": "cd eslint-config && npm install",
"postinstall:app": "cd simplifier && npm install",
"postinstall": "run-s postinstall:**",
"lint:app": "cd simplifier && npm run lint",
"lint": "run-s --continue-on-error lint:**",
"test-once:app": "cd simplifier && npm run test-once",
"test-once": "run-s --continue-on-error test-once:**",
"test": "run-s test-once",
"start": "cd simplifier && npm run start",
"build:app": "cd simplifier && npm run build",
"build": "run-s build:**"
},
"devDependencies": {
"ghooks": "^2.0.4",
"npm-run-all": "^4.1.5"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
}
}