21 lines
707 B
JSON
21 lines
707 B
JSON
{
|
|
"devDependencies": {
|
|
"chrome-launcher": "^0.10.2",
|
|
"chrome-remote-interface": "0.26.1",
|
|
"husky": "1.0.0-rc.13",
|
|
"lerna": "3.1.4",
|
|
"prettier": "1.14.2"
|
|
},
|
|
"scripts": {
|
|
"check_code_format": "sh ./bin/drun.sh \"nodejs node_modules/prettier/bin-prettier.js --config ./prettier.config.js --list-different \\\"{.,{packages,bin}/**/!(dist)}/*.{js,json,md}\\\"\"",
|
|
"format_code": "sh ./bin/drun.sh \"nodejs node_modules/prettier/bin-prettier.js --config ./prettier.config.js --write \\\"{.,{packages,bin}/**/!(dist)}/*.{js,json,md}\\\"\"",
|
|
"test": "sh ./bin/pre-commit.sh",
|
|
"bootstrap": "sh ./bin/drun.sh lerna bootstrap"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run test"
|
|
}
|
|
}
|
|
}
|