forked from haiyuazhang/autorest.ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.86 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
59
60
61
62
63
{
"name": "@autorest/ansible",
"version": "1.4.0",
"description": "Autorest Azure Ansible 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.ansible.git"
},
"keywords": [
"autorest",
"extension"
],
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.5",
"@types/node": "10.17.0",
"chai": "^4.2.0",
"eslint": "~5.4.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"node-yaml": "^3.2.0",
"nyc": "^15.0.0",
"source-map-support": "^0.5.13",
"typescript": "^3.7.5"
},
"dependencies": {
"@autorest/core": "^3.0.6306",
"@azure-tools/async-io": "^3.0.209",
"@azure-tools/autorest-extension-base": "~3.1.235",
"@azure-tools/codegen": "^2.5.276",
"@azure-tools/codemodel": "4.13.325",
"@azure-tools/linq": "^3.1.232",
"autorest": "^3.0.6187",
"await-exec": "^0.1.2",
"dir-compare": "^2.2.0",
"js-yaml": "^3.13.1",
"node-yaml": "^3.2.0"
},
"files": [
"dist"
]
}