source: frontend/node_modules/tsutils/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.8 KB
Line 
1{
2 "name": "tsutils",
3 "version": "3.21.0",
4 "description": "utilities for working with typescript's AST",
5 "scripts": {
6 "precompile": "rimraf \"{,util,typeguard,test{,/rules}/*.{js,d.ts,js.map}\"",
7 "compile": "ttsc -p .",
8 "lint:tslint": "wotan -m @fimbul/valtyr",
9 "lint:wotan": "wotan",
10 "lint": "run-p lint:*",
11 "test": "mocha test/*Tests.js && tslint --test 'test/rules/**/tslint.json'",
12 "verify": "run-s compile lint coverage",
13 "prepublishOnly": "run-s verify",
14 "coverage": "nyc run-s test",
15 "report-coverage": "cat ./coverage/lcov.info | coveralls",
16 "github-release": "node ./scripts/github-release.js",
17 "postpublish": "git push origin master --tags && run-s github-release"
18 },
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/ajafff/tsutils"
22 },
23 "keywords": [
24 "typescript",
25 "ts",
26 "ast",
27 "typeguard",
28 "utils",
29 "helper",
30 "node"
31 ],
32 "author": "Klaus Meinhardt",
33 "license": "MIT",
34 "devDependencies": {
35 "@fimbul/mithotyn": "^0.21.0",
36 "@fimbul/valtyr": "^0.22.0",
37 "@fimbul/wotan": "^0.22.0",
38 "@types/chai": "^4.0.10",
39 "@types/mocha": "^5.0.0",
40 "@types/node": "^11.13.0",
41 "chai": "^4.1.2",
42 "coveralls": "^3.0.0",
43 "github-release-from-changelog": "^1.3.0",
44 "mocha": "^6.0.2",
45 "npm-run-all": "^4.1.2",
46 "nyc": "^13.3.0",
47 "rimraf": "^3.0.2",
48 "ts-transform-const-enum": "^0.0.1",
49 "tslint": "^5.8.0",
50 "tslint-consistent-codestyle": "^1.11.0",
51 "ttypescript": "^1.5.5",
52 "typescript": "4.2.0-dev.20201230"
53 },
54 "peerDependencies": {
55 "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"
56 },
57 "dependencies": {
58 "tslib": "^1.8.1"
59 },
60 "engines": {
61 "node": ">= 6"
62 }
63}
Note: See TracBrowser for help on using the repository browser.