forked from Azure/autorest.cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@autorest/cli",
"version": "0.1.10",
"description": "Autorest Azure CLI extension",
"main": "dist/index.js",
"engines": {
"node": ">=10.12.0"
},
"scripts": {
"start": "node dist/index.js",
"debug": "node --max_old_space_size=4096 --inspect-brk ./dist/index.js",
"eslint-fix": "eslint . --fix --ext .ts",
"eslint": "eslint . --ext .ts",
"build": "tsc -p .",
"start-testserver": "./node_modules/.bin/start-autorest-testserver",
"stop-testserver": "./node_modules/.bin/stop-autorest-testserver",
"watch": "tsc -p . --watch",
"prepare": "npm run build",
"test": "npm run build && mocha dist/test",
"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"
"test": "./node_modules/.bin/mocha -r ./node_modules/ts-node/register/ test/*/*/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.cli.git"
},
"keywords": [
"autorest",
"extension"
],
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@types/node": "10.17.0",
"eslint": "~5.4.0",
"node-yaml": "^3.2.0"
},
"dependencies": {
"@azure-tools/autorest-extension-base": "~3.1.0",
"node-yaml": "^3.2.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"@azure-tools/autorest-extension-base": "^3.0.184",
"net": "^1.0.2",
"node": "^12.11.0",
"node-yaml": "^3.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"files": [
"dist",
"README.md"
]
}