|
| 1 | +{ |
| 2 | + "name": "code-snippet", |
| 3 | + "displayName": "Code Snippet wrapper", |
| 4 | + "version": "2.0.0", |
| 5 | + "private": true, |
| 6 | + "description": "A VSCode extension that provides a simple way to add code snippets.", |
| 7 | + "categories": [ |
| 8 | + "Other" |
| 9 | + ], |
| 10 | + "keywords": [ |
| 11 | + "code", |
| 12 | + "snippet", |
| 13 | + "snipping ", |
| 14 | + "tool", |
| 15 | + "sap" |
| 16 | + ], |
| 17 | + "bugs": { |
| 18 | + "url": "https://github.com/SAP/code-snippet/issues" |
| 19 | + }, |
| 20 | + "repository": { |
| 21 | + "type": "git", |
| 22 | + "url": "https://github.com/SAP/code-snippet.git" |
| 23 | + }, |
| 24 | + "license": "Apache 2.0", |
| 25 | + "publisher": "SAPOSS", |
| 26 | + "main": "./dist/extension", |
| 27 | + "scripts": { |
| 28 | + "bundle": "webpack --mode production", |
| 29 | + "bundle-dev": "webpack --mode development --watch", |
| 30 | + "ci": "npm-run-all clean compile coverage bundle package coverage coverage:copy", |
| 31 | + "clean": "rimraf ./dist ./coverage *.vsix", |
| 32 | + "compile": "tsc -p ./", |
| 33 | + "coverage": "nyc mocha -p tsconfig.json --recursive test/**/*.spec.ts", |
| 34 | + "coverage:copy": "shx mkdir -p ../../coverage && shx cp -u ./reports/coverage/lcov.info ../../coverage/lcov_backend.info", |
| 35 | + "package": "vsce package --yarn .", |
| 36 | + "test": "mocha -p tsconfig.json --recursive test/**/*.spec.ts" |
| 37 | + }, |
| 38 | + "activationEvents": [], |
| 39 | + "extensionDependencies": [ |
| 40 | + "saposs.code-snippet-tool" |
| 41 | + ], |
| 42 | + "devDependencies": { |
| 43 | + "@types/sinon": "^10.0.11", |
| 44 | + "copy-webpack-plugin": "^5.0.5", |
| 45 | + "sinon": "^9.2.1", |
| 46 | + "string-replace-loader": "^2.1.1", |
| 47 | + "ts-loader": "^8.0.14", |
| 48 | + "ts-node": "^9.1.1", |
| 49 | + "vsce": "^1.73.0", |
| 50 | + "webpack": "^5.89.0", |
| 51 | + "webpack-cli": "5.1.4" |
| 52 | + }, |
| 53 | + "engines": { |
| 54 | + "vscode": "^1.44.2" |
| 55 | + }, |
| 56 | + "icon": "logo.png" |
| 57 | +} |
0 commit comments