idlize
34 строки · 958.0 Байт
1{
2"name": "@koalaui/compiler-plugin",3"version": "1.4.1+devel",4"description": "",5"main": "build/lib/src/index.js",6"types": "build/lib/src/index.d.ts",7"files": [8"build/lib/**/*.js",9"build/lib/**/*.d.ts"10],11"keywords": [],12"dependencies": {13"@koalaui/common": "1.4.1+devel"14},15"devDependencies": {16"@types/chai": "^4.3.1",17"@types/mocha": "^9.1.0",18"@typescript-eslint/eslint-plugin": "^5.20.0",19"@typescript-eslint/parser": "^5.20.0",20"chai": "^4.3.6",21"eslint": "^8.13.0",22"eslint-plugin-unused-imports": "^2.0.0",23"mocha": "^9.2.2",24"source-map-support": "^0.5.21"25},26"scripts": {27"prepare": "ts-patch install",28"compile": "tsc -b .",29"clean": "rimraf build dist test/dump",30"unmemoize:tests": "cd test && tsc -p tsconfig-unmemoize.json && rimraf build",31"test": "npm run unmemoize:tests && npm run compile && mocha",32"test:coverage": "nyc mocha"33}34}
35