2018-10-03 20:04:34 +03:00
|
|
|
{
|
2019-09-03 21:02:12 +03:00
|
|
|
"name": "@azure-tools/tasks",
|
2021-03-19 01:15:43 +03:00
|
|
|
"version": "3.0.255",
|
2019-03-14 01:05:30 +03:00
|
|
|
"description": "Async tasks for Azure Open Source Projects",
|
2018-10-03 20:04:34 +03:00
|
|
|
"engines": {
|
2019-08-30 01:00:33 +03:00
|
|
|
"node": ">=10.12.0"
|
2018-10-03 20:04:34 +03:00
|
|
|
},
|
|
|
|
"main": "./dist/main.js",
|
|
|
|
"typings": "./dist/main.d.ts",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-02-11 00:40:58 +03:00
|
|
|
"url": "git+https://github.com/Azure/perks.git"
|
2018-10-03 20:04:34 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-10-04 00:10:04 +03:00
|
|
|
"build": "tsc -p .",
|
2018-10-12 22:01:49 +03:00
|
|
|
"watch": "tsc -p . --watch",
|
2019-08-28 21:30:54 +03:00
|
|
|
"eslint-fix": "eslint . --fix --ext .ts",
|
2019-08-28 23:47:07 +03:00
|
|
|
"eslint": "eslint . --ext .ts",
|
2018-10-03 20:04:34 +03:00
|
|
|
"prepare": "npm run build",
|
2018-12-04 00:43:47 +03:00
|
|
|
"test": "npm run build && _mocha dist/test --timeout 50000",
|
2021-03-18 01:59:18 +03:00
|
|
|
"test:ci": "npm run build && mocha dist/test --timeout 50000",
|
2019-09-05 00:31:40 +03:00
|
|
|
"clean": "ver > nul 2>&1 nul && npm run --silent clean-cmd || npm run --silent clean-bash",
|
|
|
|
"clean-cmd": "if exist dist rmdir /s /q dist && exit 0 || exit 0 ",
|
|
|
|
"clean-bash": "rm nul && rm -rf dist && exit 0 || exit 0"
|
2018-10-03 20:04:34 +03:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"perks",
|
|
|
|
"tasks",
|
|
|
|
"azure",
|
|
|
|
"typescript"
|
|
|
|
],
|
|
|
|
"author": "Microsoft",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2019-02-11 00:40:58 +03:00
|
|
|
"url": "https://github.com/Azure/perks/issues"
|
2018-10-03 20:04:34 +03:00
|
|
|
},
|
2019-09-06 22:52:50 +03:00
|
|
|
"homepage": "https://github.com/Azure/perks/tree/master/tasks#readme",
|
|
|
|
"readme": "https://github.com/Azure/perks/tree/master/tasks/readme.md",
|
2018-10-03 20:04:34 +03:00
|
|
|
"devDependencies": {
|
2019-08-29 19:53:46 +03:00
|
|
|
"@types/node": "12.7.2",
|
2018-10-03 20:04:34 +03:00
|
|
|
"@types/mocha": "5.2.5",
|
|
|
|
"mocha": "5.2.0",
|
|
|
|
"mocha-typescript": "1.1.17",
|
2021-01-07 01:46:07 +03:00
|
|
|
"typescript": "~3.9.7",
|
2019-11-05 01:54:42 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "~2.6.0",
|
|
|
|
"@typescript-eslint/parser": "~2.6.0",
|
|
|
|
"eslint": "~6.6.0",
|
2019-09-16 23:01:40 +03:00
|
|
|
"source-map-support": "0.5.13"
|
2018-10-03 20:04:34 +03:00
|
|
|
},
|
|
|
|
"dependencies": {}
|
2021-01-07 01:46:07 +03:00
|
|
|
}
|