Files
DefinitelyTyped-tools/packages/dts-critic/package.json
Nathan Shively-Sanders 23c7bacc24 Port dtslint tests to jest, re-root dts-critic tests (#364)
* Port dtslint tests to jest, re-root dts-critic tests

dts-critic tests need to be run from DefinitelyTyped-tools/ root now,
which also changes a couple of the assertions.

* build dtslint before running tests

* remove @types/jest devDep from dts-critic

* add dts-critic/dtslint to root build

* better name for dtslint tests
2021-12-03 10:41:34 -08:00

58 lines
1.6 KiB
JSON

{
"name": "@definitelytyped/dts-critic",
"version": "0.0.99",
"author": "Nathan Shively-Sanders",
"description": "Checks a new .d.ts against the Javascript source and tells you what problems it has",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@definitelytyped/header-parser": "latest",
"command-exists": "^1.2.8",
"rimraf": "^3.0.2",
"semver": "^6.2.0",
"tmp": "^0.2.1",
"yargs": "^15.3.1"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/node": "~10.17.0",
"@types/rimraf": "^3.0.0",
"@types/semver": "^6.0.1",
"@types/strip-json-comments": "0.0.30",
"@types/tmp": "^0.2.0",
"@types/yargs": "^12.0.8",
"strip-json-comments": "^2.0.1",
"typescript": "*"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b .",
"dt": "node dist/dt.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/DefinitelyTyped-tools.git"
},
"keywords": [
"definitely",
"typed",
"refresh",
"npm",
"tag"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
},
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools#readme",
"engines": {
"node": ">=10.17.0"
}
}