package.json 1.78 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
{
  "name": "tsutils",
  "version": "3.17.1",
  "description": "utilities for working with typescript's AST",
  "scripts": {
    "compile": "rm -rf {,util,typeguard,test/**}/*.js; ttsc -p .",
    "lint:tslint": "wotan -m @fimbul/valtyr",
    "lint:wotan": "wotan",
    "lint": "run-p lint:*",
    "test": "mocha test/*Tests.js && tslint --test 'test/rules/**/tslint.json'",
    "verify": "run-s compile lint coverage",
    "prepublishOnly": "run-s verify",
    "coverage": "nyc run-s test",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog",
    "postpublish": "git push origin master --tags; run-s github-release"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ajafff/tsutils"
  },
  "keywords": [
    "typescript",
    "ts",
    "ast",
    "typeguard",
    "utils",
    "helper",
    "node"
  ],
  "author": "Klaus Meinhardt",
  "license": "MIT",
  "devDependencies": {
    "@fimbul/mithotyn": "^0.17.0",
    "@fimbul/valtyr": "^0.20.0",
    "@fimbul/wotan": "^0.20.0",
    "@types/chai": "^4.0.10",
    "@types/mocha": "^5.0.0",
    "@types/node": "^11.13.0",
    "chai": "^4.1.2",
    "coveralls": "^3.0.0",
    "github-release-from-changelog": "^1.3.0",
    "mocha": "^6.0.2",
    "npm-run-all": "^4.1.2",
    "nyc": "^13.3.0",
    "ts-transform-const-enum": "^0.0.1",
    "tslint": "^5.8.0",
    "tslint-consistent-codestyle": "^1.11.0",
    "ttypescript": "^1.5.5",
    "typescript": "^3.6.0-dev.20190804"
  },
  "peerDependencies": {
    "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
  },
  "dependencies": {
    "tslib": "^1.8.1"
  },
  "engines": {
    "node": ">= 6"
  }
}