aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tsutils/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tsutils/package.json')
-rw-r--r--node_modules/tsutils/package.json40
1 files changed, 40 insertions, 0 deletions
diff --git a/node_modules/tsutils/package.json b/node_modules/tsutils/package.json
new file mode 100644
index 000000000..ee8160418
--- /dev/null
+++ b/node_modules/tsutils/package.json
@@ -0,0 +1,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"
+ }
+}