50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "office-addin-node-debugger",
|
|
"version": "1.0.3",
|
|
"description": "Files for enabling office add-in web debugging using Node and VS Code.",
|
|
"main": "./lib/debugger.js",
|
|
"scripts": {
|
|
"build": "rimraf lib && concurrently \"tsc -p tsconfig.json\"",
|
|
"lint": "office-addin-lint check",
|
|
"lint:fix": "office-addin-lint fix",
|
|
"prettier": "office-addin-lint prettier",
|
|
"start": "rimraf lib && concurrently \"npm run watch\"",
|
|
"test": "echo No tests.",
|
|
"watch": "tsc -p tsconfig.json -w"
|
|
},
|
|
"author": "Office Dev",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"office-addin-node-debugger": "./cli.js"
|
|
},
|
|
"keywords": [
|
|
"Office",
|
|
"Node Debugger"
|
|
],
|
|
"dependencies": {
|
|
"commander": "^13.0.0",
|
|
"node-fetch": "^2.6.1",
|
|
"office-addin-usage-data": "^2.0.3",
|
|
"ws": "^7.4.6"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/eslint-plugin-sdl": "^1.0.1",
|
|
"@types/node": "^14.17.2",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@types/ws": "^5.1.2",
|
|
"concurrently": "^9.0.0",
|
|
"office-addin-lint": "^3.0.3",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/OfficeDev/Office-Addin-Scripts"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/OfficeDev/Office-Addin-Scripts/issues"
|
|
},
|
|
"prettier": "office-addin-prettier-config",
|
|
"gitHead": "0a83e04842c872533d72b043ebc55e9a6013f34e"
|
|
}
|