This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
99 lines (99 loc) · 2.61 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "iot-solutions",
"version": "3.0.1",
"description": "Azure IoT Solutions cross platform command line tool",
"license": "MIT",
"author": "Parvez Pathan",
"keywords": [
"azure",
"iot",
"remotemonitoring",
"pcs",
"cli"
],
"main": "./publish/index.js",
"scripts": {
"start": "npm run build && npm test && npm run copy",
"copy": "copyfiles ./solutions/**/*.* ./publish/",
"build": "tsc -p tsconfig.json",
"lint": "tslint -c tslint.json --type-check -p tsconfig.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest",
"build:live": "nodemon --exec npm run build:tsnode",
"build:tsnode": "ts-node ./src/index.ts",
"main": "node ./publish/index.js"
},
"bin": {
"pcs": "./publish/index.js"
},
"homepage": "https://github.com/Azure/pcs-cli",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Azure/pcs-cli.git"
},
"bugs": {
"url": "https://github.com/Azure/pcs-cli/issues"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!@kubernetes)"
]
},
"devDependencies": {
"@types/adal": "1.0.29",
"@types/azure": "0.9.19",
"@types/chalk": "0.4.31",
"@types/commander": "2.9.1",
"@types/inquirer": "0.0.35",
"@types/jest": "19.2.4",
"@types/js-yaml": "^3.9.1",
"@types/lodash": "^4.14.116",
"@types/node": "7.0.29",
"@types/node-forge": "0.6.10",
"@types/ssh2": "0.5.35",
"copyfiles": "1.2.0",
"import-sort": "2.4.0",
"jest": "24.7.1",
"ts-jest": "24.0.1",
"ts-node": "3.0.6",
"tslint": "5.4.3",
"typescript": "^3.4.2"
},
"dependencies": {
"@kubernetes/client-node": "0.6.0",
"adal-node": "0.1.28",
"azure-arm-authorization": "4.1.0",
"azure-arm-compute": "4.0.0",
"azure-arm-containerservice": "^5.0.2",
"azure-arm-network": "^8.0.0",
"azure-arm-resource": "^3.0.0-preview",
"azure-arm-streamanalytics": "1.0.0-preview",
"azure-arm-website": "2.0.0-preview",
"azure-graph": "3.0.0",
"btoa": "1.1.2",
"commander": "2.9.0",
"inquirer": "6.2.0",
"js-yaml": "3.13.1",
"json-loader": "0.5.4",
"jsonpath": "1.0.1",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"moment": "2.21.0",
"ms-rest": "2.3.4",
"ms-rest-azure": "2.5.7",
"node-fetch": "1.7.3",
"node-forge": "0.7.1",
"ssh2": "0.5.5"
}
}