forked from owlprotocol/solidity-cbor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 954 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
{
"name": "@owlprotocol/solidity-cbor-monorepo",
"version": "0.1.0",
"private": false,
"description": "Encode and decode CBOR with Solidity contracts.",
"license": "MIT",
"contributors": ["Corban Villa"],
"scripts": {
"build": "echo 'No build script'",
"clean": "npm-run-all -p clean:lib clean:node_modules",
"clean:lib": "rimraf packages/*/lib",
"clean:node_modules": "rimraf packages/*/node_modules",
"postinstall": "husky install && npm run build",
"lint:staged": "echo 'No lint script'",
"compile": "npm-run-all -p compile:solidity-cbor",
"compile:solidity-cbor": "cd packages/solidity-cbor && npm run compile",
"test": "npm-run-all -p test:solidity-cbor",
"test:solidity-cbor": "cd packages/solidity-cbor && npm run test",
"benchmark": "cd packages/solidity-cbor && npm run benchmark"
},
"dependencies": {
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}