wallet-core/node_modules/tsutils/package.json

41 lines
1018 B
JSON
Raw Normal View History

2017-05-28 00:38:50 +02:00
{
"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"
}
}