forked from microsoft/DefinitelyTyped-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@definitelytyped/publisher",
"private": true,
"version": "0.0.197",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Publish DefinitelyTyped definitions to NPM",
"dependencies": {
"@definitelytyped/definitions-parser": "workspace:*",
"@definitelytyped/header-parser": "workspace:*",
"@definitelytyped/retag": "workspace:*",
"@definitelytyped/utils": "workspace:*",
"longjohn": "^0.2.12",
"pacote": "^17.0.4",
"semver": "^7.5.4",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/pacote": "^11.1.8",
"@types/semver": "^7.5.5",
"@types/yargs": "^17.0.31"
},
"scripts": {
"build": "tsc -b",
"test": "../../node_modules/.bin/jest --config ../../jest.config.js packages/publisher",
"clean": "node --enable-source-maps dist/clean.js",
"get-definitely-typed": "node --enable-source-maps dist/get-definitely-typed.js",
"calculate-versions": "node --enable-source-maps dist/calculate-versions.js",
"generate": "node --enable-source-maps dist/generate-packages.js",
"validate": "node --enable-source-maps dist/validate.js",
"publish-packages": "node --enable-source-maps dist/publish-packages.js",
"publish-packages-dry": "node --enable-source-maps dist/publish-packages.js --dry",
"publish-registry": "node --enable-source-maps dist/publish-registry.js",
"full": "node --enable-source-maps dist/full.js",
"full-dry": "node --enable-source-maps dist/full.js --dry",
"test-tsNext": "node --enable-source-maps dist/tester/test.js --all --tsNext"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/DefinitelyTyped-tools.git",
"directory": "packages/publisher"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
},
"engines": {
"node": ">=16.17.0"
},
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/publisher#readme"
}