68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "office-addin-lint",
|
|
"version": "2.3.3",
|
|
"description": "Provide eslint and prettier integration",
|
|
"main": "./lib/main.js",
|
|
"scripts": {
|
|
"build": "rimraf lib && concurrently \"tsc -p tsconfig.json\"",
|
|
"cli": "node lib/cli.js",
|
|
"lint": "node lib/cli.js check",
|
|
"lint:fix": "node lib/cli.js fix",
|
|
"prettier": "node lib/cli.js prettier",
|
|
"test": "mocha -r ts-node/register test/src/*.ts"
|
|
},
|
|
"author": "Office Dev",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"office-addin-lint": "lib/cli.js"
|
|
},
|
|
"config": {
|
|
"lint_files": "src/**/*.{ts,tsx,js,jsx}"
|
|
},
|
|
"keywords": [
|
|
"Office",
|
|
"Office Add-in"
|
|
],
|
|
"dependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^7.3.0",
|
|
"@typescript-eslint/parser": "^7.5.0",
|
|
"commander": "^6.2.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-office-addins": "^3.0.2",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"office-addin-prettier-config": "^1.2.1",
|
|
"office-addin-usage-data": "^1.6.12",
|
|
"prettier": "^3.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/assert": "^1.5.10",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/node": "^20.12.4",
|
|
"@types/node-fetch": "^2.6.11",
|
|
"assert": "^2.1.0",
|
|
"concurrently": "^8.2.2",
|
|
"mocha": "^10.4.0",
|
|
"rimraf": "^5.0.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"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",
|
|
"eslintConfig": {
|
|
"plugins": [
|
|
"office-addins"
|
|
],
|
|
"extends": [
|
|
"plugin:office-addins/recommended"
|
|
]
|
|
},
|
|
"gitHead": "223e80a361c4a9e6176f34a0b48a801bcc9b6f89"
|
|
}
|