This repository was archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 KB
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
{
"name": "taskcluster-auth",
"version": "0.1.0",
"private": true,
"main": "node src/server production",
"scripts": {
"heroku-prebuild": "echo $SOURCE_VERSION > .git-version",
"test": "mocha test/*_test.js",
"lint": "eslint src/*.js test/*.js",
"pretest": "yarn lint",
"checkStagingSetup": "heroku run -a taskcluster-auth-staging node bin/make-check-client.js",
"checkStaging": "mocha test/check-staging.js"
},
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/taskcluster-auth.git"
},
"dependencies": {
"assume": "^1.5.2",
"aws-sdk": "^2.150.0",
"azure-blob-storage": "^3.0.0",
"azure-entities": "^5.1.0",
"debug": "^3.1.0",
"fast-azure-storage": "^2.3.0",
"hashids": "^1.2.2",
"hawk": "^4.1.2",
"hoek": "^5.0.3",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"morgan-debug": "^2.0.0",
"promise": "^8.0.1",
"quick-lru": "^1.1.0",
"sentry-api": "^0.1.1",
"slugid": "^1.1.0",
"statsum": "^0.5.1",
"superagent": "^3.8.1",
"taskcluster-client": "^11.0.1",
"taskcluster-lib-api": "^12.7.0",
"taskcluster-lib-app": "^10.0.0",
"taskcluster-lib-azure": "^10.0.0",
"taskcluster-lib-docs": "^10.0.0",
"taskcluster-lib-iterate": "^10.0.0",
"taskcluster-lib-loader": "^10.0.1",
"taskcluster-lib-monitor": "^11.1.1",
"taskcluster-lib-pulse": "^11.1.0",
"taskcluster-lib-scopes": "^10.0.0",
"taskcluster-lib-validate": "^12.0.0",
"typed-env-config": "^1.1.0"
},
"devDependencies": {
"eslint-config-taskcluster": "^3.1.0",
"http-proxy": "^1.17.0",
"mocha": "^4.0.1",
"mock-aws-s3": "^3.0.0",
"taskcluster-lib-references": "^1.3.0",
"taskcluster-lib-testing": "^12.1.2",
"temporary": "^0.0.8"
},
"engine-strict": true,
"engines": {
"node": "^8.10.0",
"yarn": "^1.0.0"
}
}