-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "taskcluster-lib-scopes",
"version": "11.0.0",
"author": "Jonas Finnemann Jensen <jopsen@gmail.com>",
"description": "Scope checking utilities for Taskcluster",
"license": "MPL-2.0",
"scripts": {
"lint": "biome check src test",
"format": "biome format --write src test",
"pretest": "yarn lint",
"test": "node --test test/*_test.js"
},
"engines": {
"node": ">=v20.0.0"
},
"main": "./src/index",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/taskcluster-lib-scopes.git"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"lodash": "^4.17.15"
},
"dependencies": {
"fast-json-stable-stringify": "^2.1.0"
},
"renovate": {
"extends": [
"config:base"
],
"packageRules": [
{
"updateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/",
"paths": [
"+(package.json)"
],
"automerge": true
}
]
}
}