forked from taskcluster/taskcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.41 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "taskcluster",
"version": "0.0.0",
"private": true,
"engine-strict": true,
"engines": {
"node": "10.15.3",
"yarn": "^1.0.0"
},
"workspaces": [
"libraries/*",
"services/*",
"clients/client"
],
"dependencies": {
"taskcluster-client": "link:clients/client",
"taskcluster-lib-api": "link:libraries/api",
"taskcluster-lib-app": "link:libraries/app",
"taskcluster-lib-azure": "link:libraries/azure",
"taskcluster-lib-config": "link:libraries/config",
"taskcluster-lib-docs": "link:libraries/docs",
"taskcluster-lib-iterate": "link:libraries/iterate",
"taskcluster-lib-loader": "link:libraries/loader",
"taskcluster-lib-monitor": "link:libraries/monitor",
"taskcluster-lib-pulse": "link:libraries/pulse",
"taskcluster-lib-references": "link:libraries/references",
"taskcluster-lib-scopes": "link:libraries/scopes",
"taskcluster-lib-urls": "^12.0.0",
"taskcluster-lib-validate": "link:libraries/validate"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@neutrinojs/mocha": "9.0.0-rc.0",
"@neutrinojs/node": "9.0.0-rc.0",
"ajv": "^6.8.1",
"app-root-dir": "^1.0.2",
"assume": "^2.1.0",
"aws-sdk": "^2.390.0",
"aws-sdk-mock": "^4.3.0",
"capture-console": "^1.0.1",
"cliff": "^0.1.10",
"commander": "^2.19.0",
"console-taskgraph": "^1.5.0",
"depcheck": "^0.7.0",
"dockerode": "^2.5.8",
"dot": "^1.1.2",
"ejs": "^2.6.1",
"eslint": "5.15.1",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"got": "^9.5.0",
"http-proxy": "^1.17.0",
"intercept-stdout": "^0.1.2",
"is-uuid": "^1.0.2",
"js-yaml": "^3.12.1",
"json-e": "^2.7.1",
"json-stable-stringify": "^1.0.1",
"listr": "^0.14.3",
"lodash": "^4.17.11",
"md-directory": "^0.1.2",
"memory-streams": "^0.1.3",
"mkdirp": "^0.5.1",
"mocha": "^6.0.0",
"mock-aws-s3": "^3.0.0",
"mock-fs": "^4.8.0",
"mockdate": "^2.0.2",
"neutrino": "9.0.0-rc.0",
"nock": "^10.0.6",
"raw-loader": "^1.0.0",
"recursive-copy": "^2.0.9",
"rimraf": "^2.6.3",
"rmp": "^0.0.0",
"shell-quote": "^1.6.1",
"sinon": "^7.2.2",
"slugid": "^2.0.0",
"source-map-support": "^0.5.9",
"split": "^1.0.1",
"superagent": "^4.1.0",
"tar-fs": "^2.0.0",
"tar-stream": "^2.0.0",
"taskcluster-lib-testing": "link:libraries/testing",
"temporary": "^1.0.0",
"tmp": "^0.0.33",
"url-join": "^4.0.0",
"uuid": "^3.3.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2",
"xml2js": "^0.4.19",
"xmlbuilder": "^11.0.0",
"zen-observable": "^0.8.11",
"zurvan": "^0.5.2"
},
"scripts": {
"lint": "eslint --cache --ext js libraries services infrastructure clients/client test",
"test": "yarn workspaces run test",
"test:meta": "mocha test/*_test.js",
"build": "node infrastructure/builder/src/main.js build",
"generate": "node infrastructure/builder/src/main.js generate",
"heroku-prebuild": "echo $SOURCE_VERSION > .git-version",
"heroku-postbuild": "echo Skip build on Heroku"
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
"schedule:weekly"
]
},
"eslintIgnore": [
"**/node_modules/**",
"**/test/fixtures/**",
"services/web-server/build"
],
"heroku-run-build-script": true
}