{ "name": "monaco-yaml", "version": "2.5.0", "description": "YAML plugin for the Monaco Editor", "scripts": { "watch": "tsc -p ./src --watch", "compile": "rimraf ./out && yarn compile:umd && yarn compile:esm", "compile:umd": "tsc -p ./tsconfig.json", "compile:esm": "tsc -p ./tsconfig.esm.json", "bundle": "rimraf ./lib && yarn bundle:umd && yarn bundle:esm && mcopy ./src/monaco.d.ts ./lib/monaco.d.ts", "bundle:umd": "node ./scripts/bundle-umd", "bundle:esm": "node ./scripts/bundle-esm", "build": "yarn compile && yarn bundle", "prepare": "yarn build", "lint": "prettier \"{src,test}/**/*.{json,scss,html,ts}\" --write", "test": "jest --verbose" }, "main": "./lib/esm/monaco.contribution.js", "module": "./lib/esm/monaco.contribution.js", "typings": "./lib/monaco.d.ts", "directories": { "lib": "./lib" }, "author": "Kevin Decker (http://incaseofstairs.com)", "maintainers": [ "kpdecker", "pengx17" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/pengx17/monaco-yaml" }, "bugs": { "url": "https://github.com/pengx17/monaco-yaml/issues" }, "dependencies": { "yaml-language-server": "^0.11.1" }, "devDependencies": { "@types/jest": "^23.3.10", "@types/node": "^12.12.6", "husky": "^1.2.1", "jest": "^23.6.0", "lint-staged": "^10.1.2", "monaco-editor": "^0.21.2", "monaco-editor-core": "^0.21.2", "monaco-languages": "^2.1.1", "monaco-plugin-helpers": "^1.0.3", "prettier": "^1.19.1", "requirejs": "^2.3.6", "rimraf": "^2.6.2", "ts-jest": "^23.10.5", "typescript": "^3.8.3", "typescript-tslint-plugin": "^0.5.5", "eslint": "^6.8.0", "uglify-es": "^3.3.9" }, "prettier": { "singleQuote": true, "trailingComma": "es5", "semi": true }, "lint-staged": { "src/*.{json,scss,html,ts,js,jsx}|scripts/*.js": [ "prettier --write" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "jest": { "globals": { "ts-jest": { "tsConfig": "./test/tsconfig.json" } }, "moduleFileExtensions": [ "js", "ts" ], "transform": { "^.+\\.(ts|tsx)$": "ts-jest" }, "testMatch": [ "**/test/*.test.+(ts|js)" ] } }