mirror of
https://github.com/denoland/deno.git
synced 2025-02-07 06:54:07 -05:00
143ea4759f
Closes #23036
11 lines
380 B
JSON
11 lines
380 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|