forked from compound-finance/comet-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 942 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
34
35
36
37
38
{
"name": "@compound-finance/comet-extension",
"version": "0.0.15",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@ethersproject/units": "^5.7.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"ava": "^5.0.1",
"rollup": "^3.10.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"scripts": {
"test": "tsc --noEmit && ava",
"prepare": "tsc -p tsconfig.build.json && npm run rollup",
"rollup": "./node_modules/.bin/rollup -c rollup.config.js"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
]
}
}