42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "monaco-languages",
|
|
"version": "2.7.0",
|
|
"description": "Bundle of many languages for the Monaco Editor.",
|
|
"scripts": {
|
|
"compile": "mrmdir ./out && tsc -p ./src/tsconfig.json && tsc -p ./src/tsconfig.esm.json",
|
|
"watch": "tsc -p ./src --watch",
|
|
"watch-esm": "tsc -p ./src/tsconfig.esm.json --watch",
|
|
"test": "tape -r ./test/all.js",
|
|
"prepublishOnly": "mrmdir ./release && npm run compile && node ./scripts/release.js && node ./scripts/bundle",
|
|
"prettier": "prettier --write ."
|
|
},
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/monaco-languages"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/monaco-languages/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@types/tape": "^4.13.0",
|
|
"glob": "^7.1.6",
|
|
"husky": "^4.3.8",
|
|
"jsdom": "^16.4.0",
|
|
"monaco-editor-core": "0.27.0",
|
|
"monaco-plugin-helpers": "^1.0.3",
|
|
"prettier": "^2.2.1",
|
|
"pretty-quick": "^3.1.0",
|
|
"requirejs": "^2.3.6",
|
|
"tape": "^5.1.1",
|
|
"terser": "^5.5.1",
|
|
"typescript": "4.1.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged"
|
|
}
|
|
}
|
|
}
|