forked from microsoft/types-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"private": true,
"name": "types-publisher",
"version": "0.0.0",
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"description": "Publish DefinitelyTyped definitions to NPM",
"dependencies": {
"@octokit/rest": "^16.1.0",
"@types/tar-stream": "^1.6.0",
"adal-node": "^0.1.22",
"applicationinsights": "^1.0.7",
"azure-keyvault": "^3.0.4",
"azure-storage": "^2.0.0",
"charm": "^1.0.2",
"definitelytyped-header-parser": "3.8.2",
"dtslint": "latest",
"fs-extra": "4.0.0",
"fstream": "^1.0.12",
"longjohn": "^0.2.11",
"moment": "^2.18.1",
"npm": "^6.13.4",
"npm-registry-client": "^8.1.0",
"oboe": "^2.1.3",
"source-map-support": "^0.4.0",
"tar": "^2.2.2",
"tar-stream": "^1.6.2",
"travis-fold": "^0.1.2",
"typescript": "next",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/charm": "^1.0.0",
"@types/fs-extra": "4.0.0",
"@types/jest": "^23.3.9",
"@types/mz": "^0.0.31",
"@types/node": "^10.11.3",
"@types/oboe": "^2.0.28",
"@types/source-map-support": "^0.4.0",
"@types/tar": "^1.0.27",
"@types/travis-fold": "^0.1.0",
"@types/yargs": "^8.0.1",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"tslint": "^5.13.0"
},
"scripts": {
"test": "npm run build && jest && npm run lint",
"build": "node node_modules/typescript/lib/tsc.js",
"watch": "node node_modules/typescript/lib/tsc.js --watch",
"clean": "node -r source-map-support/register bin/clean.js",
"get-definitely-typed": "node -r source-map-support/register bin/get-definitely-typed.js",
"parse": "node -r source-map-support/register bin/parse-definitions.js",
"check": "node -r source-map-support/register bin/check-parse-results.js",
"calculate-versions": "node -r source-map-support/register bin/calculate-versions.js",
"generate": "node -r source-map-support/register bin/generate-packages.js",
"validate": "node -r source-map-support/register bin/validate.js",
"index": "node -r source-map-support/register bin/create-search-index.js",
"publish": "node -r source-map-support/register bin/publish-packages.js",
"publish-dry": "node -r source-map-support/register bin/publish-packages.js --dry",
"publish-registry": "node -r source-map-support/register bin/publish-registry.js",
"upload-blobs": "node -r source-map-support/register bin/upload-blobs.js",
"full": "node -r source-map-support/register bin/full.js",
"full-dry": "node -r source-map-support/register bin/full.js --dry",
"lint": "node node_modules/tslint/bin/tslint --format stylish --project tsconfig.json",
"webhook-dry": "node -r source-map-support/register bin/webhook.js --dry",
"make-server-run": "node -r source-map-support/register bin/make-server-run.js",
"make-production-server-run": "node -r source-map-support/register bin/make-server-run.js --remote",
"test-tsNext": "node -r source-map-support/register bin/tester/test.js --all --tsNext",
"code-owners": "node -r source-map-support/register bin/code-owners.js",
"push-production": "npm run build && git checkout production && git merge master && npm run build && git add bin && git commit -m \"Update bin\" && git push -u origin production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/types-publisher.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/types-publisher/issues"
},
"engines": {
"node": ">=6.10.0"
},
"homepage": "https://github.com/Microsoft/types-publisher#readme"
}