-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "compound-sdk",
"version": "0.0.1-alpha",
"description": "Software development kit to interact with contracts from Compound governance protocol",
"main": "dist/compound-sdk.umd.js",
"module": "dist/compound-sdk.es5.js",
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.ts",
"test": "jest",
"release": "yarn run build && npm run package:release && npm publish ./package --access public",
"package:release": "rm -rf ./package && mkdir ./package && cp -r ./dist/ ./package/dist && cp README.md package.json ./package && cp -r ./src ./package/src"
},
"dependencies": {
"ethers": "^4.0.46",
"js-base64": "^2.5.2",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.5",
"@types/js-base64": "^2.3.1",
"@types/node-fetch": "^2.5.6",
"ganache-cli": "^6.9.1",
"husky": "^4.2.3",
"jest": "^25.2.6",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"rollup": "^2.3.2",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dOrgTech/compound-sdk.git"
},
"author": "dOrg",
"license": "ISC",
"bugs": {
"url": "https://github.com/dOrgTech/compound-sdk/issues"
},
"homepage": "https://github.com/dOrgTech/compound-sdk#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}