-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
33 lines (33 loc) · 995 Bytes
/
package.json
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
{
"name": "@chainlink/starknet-gauntlet-ocr2",
"version": "0.0.1",
"description": "Starknet Gauntlet OCR2",
"keywords": [
"typescript",
"cli"
],
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"gauntlet": "ts-node ./src/index.ts",
"lint": "tsc",
"test": "SKIP_PROMPTS=true jest --runInBand --config ../../jest.config.ts --selectProjects starknet-gauntlet-ocr2 --passWithNoTests",
"test:coverage": "yarn test --collectCoverage",
"test:ci": "yarn test --ci",
"format": "yarn prettier --write ./src",
"format:check": "yarn prettier --check ./src",
"clean": "rm -rf ./dist/ ./bin/",
"build": "yarn clean && tsc -b",
"bundle": "yarn build && pkg ."
},
"dependencies": {
"@chainlink/gauntlet-contracts-ocr2": "0.2.2",
"@chainlink/gauntlet-core": "0.3.1",
"@chainlink/starknet-gauntlet": "*",
"@chainlink/starknet-gauntlet-oz": "*"
}
}