-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 938 Bytes
/
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
{
"name": "taskcluster-lib-urls",
"version": "13.0.1",
"author": "Brian Stack <[email protected]>",
"description": "Build urls for taskcluster resources.",
"license": "MPL-2.0",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"pretest": "yarn lint",
"test": "mocha test/*_test.js"
},
"files": [
"src/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/taskcluster-lib-urls.git"
},
"main": "./src/index.js",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-taskcluster": "^4.0.0",
"js-yaml": "^4.0.0",
"mocha": "^8.0.0"
},
"renovate": {
"extends": [
"config:base"
],
"packageRules": [
{
"updateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/",
"paths": [
"+(package.json)"
],
"automerge": true
}
]
}
}