UNPKG

ts-gir

Version:
108 lines (107 loc) 2.97 kB
{ "name": "ts-gir", "version": "0.2.0", "description": "generate typescript from gir", "keywords": [ "ts-gir", "ts", "typescript", "gir", "gobject", "introspect", "introspection", "babel", "generate" ], "homepage": "https://github.com/codejamninja/ts-gir", "bugs": { "url": "https://github.com/codejamninja/ts-gir/issues", "email": "jam@codejam.ninja" }, "license": "MIT", "author": { "name": "Jam Risser", "email": "jam@codejam.ninja", "url": "https://codejam.ninja" }, "files": [ "lib", "bin" ], "main": "lib/index.js", "bin": { "ts-gir": "bin/bin.js" }, "repository": { "type": "git", "url": "https://github.com/codejamninja/ts-gir" }, "scripts": { "build": "npm run build:js && npm run build:types", "build:types": "tsc -d --emitDeclarationOnly", "build:js": "babel src -d lib --extensions \".ts,.tsx\" --source-maps inline", "clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* && jest --clearCache", "clean:purge": "jest --clearCache && git clean -fXd", "format": "prettier --write ./**/*.{json,md,scss,yaml,yml,js,jsx,ts,tsx} --ignore-path .gitignore", "lint": "npm run format && tsc --allowJs --noEmit && eslint --ext .ts,.tsx ./", "lint:fix": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx --fix ./", "prepublish": "npm run build", "start": "babel-node --extensions \".ts,.tsx\" src", "test": "npm run lint && jest" }, "dependencies": { "@babel/parser": "^7.8.3", "@oclif/command": "^1.5.19", "@oclif/config": "^1.13.3", "@oclif/errors": "^1.2.2", "@oclif/plugin-help": "^2.2.3", "babel-parser-generator": "^0.1.11", "bluebird": "^3.7.2", "core-js": "^3.6.4", "cosmiconfig": "^6.0.0", "err": "^2.1.11", "fast-xml-parser": "^3.16.0", "fs-extra": "^8.1.0", "glob": "^7.1.6", "lodash": "^4.17.15", "pkg-dir": "^4.2.0", "ts-optchain.macro": "^1.1.5" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", "@babel/node": "^7.8.3", "@babel/preset-typescript": "^7.8.3", "@types/babel-generator": "^6.25.3", "@types/bluebird": "^3.5.29", "@types/cosmiconfig": "^6.0.0", "@types/fs-extra": "^8.0.1", "@types/glob": "^7.1.1", "@types/jest": "^24.9.0", "@types/lodash": "^4.14.149", "@typescript-eslint/eslint-plugin": "^2.17.0", "@typescript-eslint/parser": "^2.17.0", "babel-preset-jam": "^0.4.3", "eslint": "^6.8.0", "eslint-config-airbnb-typescript": "^6.3.1", "eslint-config-jam": "^0.2.20", "jest": "^24.9.0", "prettier": "^1.19.1", "tsc": "^1.20150623.0", "typescript": "^3.7.5" }, "engines": { "node": ">=6.0.0" }, "eslintIgnore": [ "lib" ], "jest": { "testRegex": "tests(/|/.*/)[^_/]*[jt]sx?$", "verbose": true }, "tsgir": { "importMap": {}, "dir": "@types" } }