34 строки
1.1 KiB
JSON
34 строки
1.1 KiB
JSON
{
|
|
"name": "vscode-issue-triage-extension",
|
|
"version": "0.1.1",
|
|
"description": "A chromium extension to help with triaging VS Code GitHub issues.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha -r ts-node/register **/*.test.ts",
|
|
"lint": "eslint -c .eslintrc --fix --ext .ts .",
|
|
"build": "rollup -c",
|
|
"build-distro": "./build-distro.sh"
|
|
},
|
|
"keywords": [],
|
|
"author": "JacksonKearl (jakearl@microsoft.com)",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
"@rollup/plugin-typescript": "^4.1.2",
|
|
"@types/chai": "^4.2.11",
|
|
"@types/chrome": "0.0.112",
|
|
"@types/mocha": "^7.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^2.23.0",
|
|
"@typescript-eslint/parser": "^2.23.0",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.1",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"mocha": "^7.1.2",
|
|
"prettier": "2.0.2",
|
|
"rollup": "^2.10.5",
|
|
"ts-node": "^8.10.1",
|
|
"tslib": "^2.0.0",
|
|
"typescript": "^3.9.2"
|
|
}
|
|
} |