1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/turbo/package.json

20 lines
485 B
JSON
Raw Normal View History

2022-08-17 00:51:48 +09:00
{
"name": "turbo-example",
"version": "1.0.0",
"scripts": {
"test": "turbo run test",
"test:p1": "echo test p1",
"test:p2": "echo test p2",
"test:s1": "echo test s1",
"test:s2": "echo test s2",
"test:s3": "echo test s3",
"test:npm-run-all": "run-s test:npm-run-all:{s,p}",
"test:npm-run-all:s": "run-s test:{s1,s2,s3}",
"test:npm-run-all:p": "run-p test:p*"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"turbo": "^1.4.3"
}
}