-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.54 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
{
"name": "autonity-partner-registry",
"version": "1.0.5",
"description": "Sandbox for testing Github features relevant to Engineering",
"scripts": {
"build": "npx tsc",
"start": "node dist/generate-partners.js",
"generate": "node dist/generate-partners.js",
"check-partners": "node dist/validate-partners.js",
"failure-test": "node dist/failure-check.js",
"upload": "node dist/upload-layer.js",
"test": "jest --silent --collectCoverage",
"format": "prettier --write .",
"format-check": "prettier --check .",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clearmatics/engineering-sandbox.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/clearmatics/engineering-sandbox/issues"
},
"homepage": "https://github.com/clearmatics/engineering-sandbox#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.7.3",
"jest": "^29.7.0",
"mock-fs": "^5.3.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.658.1",
"@types/js-yaml": "^4.0.9",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"sharp": "^0.33.5"
}
}