iotsuite-cli
Version:
Command Line Interface for deploying pre-configured IoT solutions through Azure
82 lines (81 loc) • 2.29 kB
JSON
{
"name": "iotsuite-cli",
"version": "1.0.1-preview",
"description": "Command Line Interface for deploying pre-configured IoT solutions through Azure",
"main": "./publish/index.js",
"scripts": {
"start": "npm run build && npm test && npm run copy",
"copy": "copyfiles ./remotemonitoring/**/*.* ./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"
},
"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)"
]
},
"bin": {
"pcs": "./publish/index.js"
},
"keywords": [
"remotemonitoring",
"pcs",
"cli"
],
"author": "Parvez Pathan",
"license": "MIT",
"devDependencies": {
"@types/adal": "^1.0.26",
"@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/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": "^20.0.4",
"nodemon": "^1.11.0",
"ts-jest": "^20.0.6",
"ts-node": "^3.0.6",
"tslint": "^5.4.3",
"typescript": "^2.5.2"
},
"dependencies": {
"@kubernetes/typescript-node": "^0.1.1",
"azure": "^2.0.0-preview",
"azure-arm-resource": "^2.0.0-preview",
"azure-graph": "^2.2.0",
"btoa": "^1.1.2",
"commander": "^2.9.0",
"inquirer": "^3.1.0",
"js-yaml": "^3.10.0",
"json-loader": "^0.5.4",
"ms-rest": "^2.2.0",
"ms-rest-azure": "^2.1.2",
"node-forge": "^0.7.1",
"ssh2": "^0.5.5"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Azure/azure-remote-monitoring-cli.git"
}
}