forked from DefinitelyTyped/dt-mergebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.38 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
{
"name": "dt-mergebot",
"version": "1.0.9",
"description": "dt-mergebot",
"dependencies": {
"@azure/functions": "^1.2.2",
"@graphql-codegen/fragment-matcher": "^1.15.4",
"@octokit/graphql-schema": "^6.70.1",
"@octokit/webhooks": "^6.3.2",
"@types/jest": "25.1.4",
"@types/node": "latest",
"@types/node-fetch": "^1.6.9",
"@types/prettyjson": "^0.0.29",
"@types/request": "^2.48.5",
"apollo-boost": "^0.4.9",
"chalk": "^3.0.0",
"definitelytyped-header-parser": "github:Microsoft/definitelytyped-header-parser#production",
"fast-json-patch": "^3.0.0-1",
"fs-extra": "^4.0.3",
"graceful-fs": "^4.2.4",
"graphql": "^14.5.8",
"idembot": "^0.0.12",
"moment": "^2.27.0",
"node-fetch": "^1.7.3",
"prettyjson": "^1.2.1",
"request": "^2.88.2",
"tslib": "^1.13.0",
"typescript": "^3.9.5"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"single": "npm run build && node bin/commands/process-single.js",
"many": "npm run build && node bin/commands/process-many.js",
"single-info": "npm run build && node bin/commands/show-info.js",
"single-info-debug": "npm run build && node --inspect-brk bin/commands/show-info.js",
"update-test-data": "npm run build && node bin/commands/update-test-data.js",
"start": "func start",
"deploy": "func azure functionapp publish TypeScriptReposAutomation",
"cleanproject": "npm run build && node bin/commands/clean-columns.js",
"create-fixture": "npm run build && node bin/commands/create-fixture.js",
"update-all-fixtures": "npm run build && node bin/commands/update-all-fixtures.js",
"graphql-schema": "npx apollo client:codegen schema --target typescript --globalTypesFile=src/schema/graphql-global-types.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanCavanaugh/dt-mergebot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/RyanCavanaugh/dt-mergebot/issues"
},
"homepage": "https://github.com/RyanCavanaugh/dt-mergebot#readme",
"devDependencies": {
"apollo": "^2.28.3",
"jest": "25.1.0",
"jest-file-snapshot": "^0.3.8",
"ts-jest": "^26.1.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/bin"
]
}
}