mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
12 lines
419 B
Text
12 lines
419 B
Text
{
|
|
"tasks": {
|
|
"echo": "echo 'Hello, World!'",
|
|
// should use the task from package.json and not the one above
|
|
"test": "npm run echo hi there",
|
|
// currently this will execute using the actual `npm run` because we
|
|
// haven't implemented the flags for `npm run` yet
|
|
"test_using_npm": "npm run non_existent -- --ignore-scripts",
|
|
"npm_run": "npm run",
|
|
"npm_run_args": "npm run -d echo"
|
|
}
|
|
}
|