forked from Flaredashboard/tso-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "tso-registry",
"version": "0.0.0",
"main": "index.js",
"repository": "git@github.com:Flaredashboard/tso-registry.git",
"author": "Anon",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/yargs": "^17.0.23",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"web3": "^1.9.0",
"yargs": "^17.7.1"
},
"scripts": {
"test:all": "mocha --require ts-node/register test/**/*.ts --timeout 15000",
"test": "mocha --require ts-node/register --timeout 15000",
"build": "tsc",
"validate_provider": "yarn ts-node src/providerValidator.ts -f",
"validate_username": "yarn ts-node src/userValidator.ts",
"validate_file_addresses": "yarn ts-node src/fileAddressValidator.ts",
"validate_file_deletion": "yarn ts-node src/fileDeletion.ts"
}
}