41 строка
1.1 KiB
JSON
41 строка
1.1 KiB
JSON
{
|
|
"name": "vscode-textmate",
|
|
"version": "9.1.0",
|
|
"description": "VSCode TextMate grammar helpers",
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"main": "./release/main.js",
|
|
"typings": "./release/main.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode-textmate"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/microsoft/vscode-textmate/issues"
|
|
},
|
|
"scripts": {
|
|
"watch": "tsc --watch",
|
|
"compile": "tsc",
|
|
"test": "mocha --ui=tdd ./out/tests/all.test.js",
|
|
"benchmark": "node benchmark/benchmark.js",
|
|
"inspect": "node out/tests/inspect.js",
|
|
"tmconvert": "node scripts/tmconvert.js",
|
|
"version": "npm run compile && npm run test",
|
|
"postversion": "git push && git push --tags",
|
|
"prepublishOnly": "tsc && webpack --progress",
|
|
"bundle": "webpack"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/node": "^16.6.1",
|
|
"copy-webpack-plugin": "^9.1.0",
|
|
"mocha": "^9.2.2",
|
|
"typescript": "^4.3.5",
|
|
"vscode-oniguruma": "^1.5.1",
|
|
"webpack": "^5.50.0",
|
|
"webpack-cli": "^4.8.0"
|
|
}
|
|
}
|