diff options
Diffstat (limited to 'node_modules/tsutils/package.json')
| -rw-r--r-- | node_modules/tsutils/package.json | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/node_modules/tsutils/package.json b/node_modules/tsutils/package.json index ee8160418..bc491efd9 100644 --- a/node_modules/tsutils/package.json +++ b/node_modules/tsutils/package.json @@ -1,13 +1,16 @@ { "name": "tsutils", - "version": "2.2.0", + "version": "2.8.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" + "compile": "rm -rf {,util,typeguard,test/**}/*.js; tsc -p .", + "lint": "tslint -p . -e 'test/rules/*/*Rule.ts'", + "lint:fix": "tslint --fix -p ./tsconfig.json", + "test": "mocha test/*Tests.js; tslint --test test/rules/*/tslint.json", + "verify": "npm run compile && npm run lint && npm run coverage", + "prepublishOnly": "npm run verify", + "coverage": "rm -rf coverage .nyc_output && nyc npm test", + "report-coverage": "cat ./coverage/lcov.info | coveralls" }, "repository": { "type": "git", @@ -29,12 +32,17 @@ "@types/mocha": "^2.2.41", "@types/node": "^7.0.18", "chai": "^3.5.0", + "coveralls": "^2.13.1", "mocha": "^3.4.1", - "tslint": "^5.2.0", - "tslint-consistent-codestyle": "^1.2.0", - "typescript": "^2.3.0" + "nyc": "^11.0.3", + "tslint": "^5.5.0", + "tslint-consistent-codestyle": "^1.5.0", + "typescript": "^2.4.1" }, "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" + "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >= 2.4.0-dev || >= 2.5.0-dev || >= 2.6.0-dev" + }, + "dependencies": { + "tslib": "^1.7.1" } } |
