-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "wraith",
"version": "0.0.0-development",
"private": true,
"description": "Private cross-chain trigger engine on Flare. Encrypted conditions in, attested execution out.",
"repository": {
"type": "git",
"url": "https://github.com/LSUDOKO/Wraith.git"
},
"license": "Apache-2.0",
"scripts": {
"test:contracts": "cd contracts && forge test -vv",
"build:contracts": "cd contracts && forge build",
"test:extension": "cd extension && go test ./...",
"test": "npm run test:contracts && npm run test:extension",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"semantic-release": "^25.0.9"
}
}