-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
31 lines (31 loc) · 929 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
{
"name": "@redstone-finance/oracles-smartweave-contracts",
"version": "0.7.3",
"license": "MIT",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn global:tsc --build tsconfig.build.json && node ./scripts/build.js",
"build-dev": "yarn global:tsc --build tsconfig.json && node ./scripts/build.js",
"test": "yarn build && NODE_ENV=test yarn global:jest",
"preversion": "yarn build",
"lint": "yarn global:eslint .",
"lint:fix": "yarn global:eslint --fix ."
},
"devDependencies": {
"@jest/types": "^29.5.4",
"@types/prompts": "^2.4.2",
"arlocal": "^1.1.60",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.4",
"prompts": "^2.4.2",
"replace-in-file": "^6.3.5",
"typescript": "^5.5.4",
"warp-contracts": "^1.2.47"
},
"publishConfig": {
"access": "public"
}
}