aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tsutils/package.json
blob: ee8160418a02310ffc8be03113ea241327ad0589 (plain)
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
{
  "name": "tsutils",
  "version": "2.2.0",
  "description": "utilities for working with typescript's AST",
  "scripts": {
    "compile": "rm -rf {,util,typeguard,src,test}/*.js; tsc -p .",
    "lint": "tslint -p ./tsconfig.json",
    "test": "mocha test/*Tests.js",
    "verify": "npm run compile && npm run lint && npm test",
    "prepublish": "npm run verify"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ajafff/tsutils"
  },
  "keywords": [
    "typescript",
    "ts",
    "ast",
    "typeguard",
    "utils",
    "helper",
    "node"
  ],
  "author": "Klaus Meinhardt",
  "license": "MIT",
  "devDependencies": {
    "@types/chai": "^3.5.2",
    "@types/mocha": "^2.2.41",
    "@types/node": "^7.0.18",
    "chai": "^3.5.0",
    "mocha": "^3.4.1",
    "tslint": "^5.2.0",
    "tslint-consistent-codestyle": "^1.2.0",
    "typescript": "^2.3.0"
  },
  "peerDependencies": {
    "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >= 2.4.0-dev || >= 2.5.0-dev"
  }
}