You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monaco-editor/package.json

42 lines
1.4 KiB
JSON

{
"name": "monaco-typescript",
"version": "2.3.0",
"description": "TypeScript and JavaScript language support for Monaco Editor",
"scripts": {
"test": "mocha",
"compile-amd": "node ./scripts/copy ./src/lib/typescriptServices-amd.js ./release/dev/lib/typescriptServices.js && tsc -p ./src/tsconfig.json",
"compile-esm": "node ./scripts/copy ./src/lib/typescriptServices.js ./release/esm/lib/typescriptServices.js && tsc -p ./src/tsconfig.esm.json",
"compile": "node ./scripts/rmdir ./release && npm run compile-amd && npm run compile-esm",
"watch": "tsc -p ./src --watch",
"prepublish": "npm run compile && gulp release",
"import-typescript": "node ./scripts/importTypescript"
},
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/monaco-typescript"
},
"bugs": {
"url": "https://github.com/Microsoft/monaco-typescript/issues"
},
"devDependencies": {
"event-stream": "^3.3.2",
"gulp": "^3.9.1",
"gulp-requirejs": "^0.4.0",
"gulp-tsb": "^2.0.0",
"gulp-uglify": "^1.5.3",
"merge-stream": "^1.0.0",
"mocha": "^2.5.3",
"monaco-editor-core": "^0.10.0",
"object-assign": "^4.1.0",
"rimraf": "^2.5.2",
"typescript": "2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10"
},
"dependencies": {
"webpack-bundle-analyzer": "^2.11.1"
}
}