-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "@dataunlocker/resource-groups",
"version": "2.0.1",
"description": "Default resource group definitions for DataUnlocker.",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"types",
"lib",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts",
"resource-groups.yml",
"resource-groups.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dataunlocker/resource-groups.git"
},
"bugs": {
"url": "https://github.com/dataunlocker/resource-groups/issues"
},
"homepage": "https://github.com/dataunlocker/resource-groups#readme",
"scripts": {
"build": "tsc && tsc-alias && node ./bin/build.js",
"test": "node ./bin/verify.js && node --test",
"test:local": "npm run build && npm run test"
},
"keywords": [
"dataunlocker",
"resource",
"groups"
],
"author": "DataUnlocker",
"devDependencies": {
"@types/node": "^20.11.5",
"json5": "^2.2.3",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"yaml": "^2.3.4"
}
}