Add package.json (#36)

This commit is contained in:
Kirill Fomichev 2021-12-30 01:33:11 +03:00 committed by GitHub
parent 9bf4cac0e9
commit 37c60af0e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3027 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
.anchor
target
node_modules
target

View File

@ -11,4 +11,4 @@ serum_multisig = "6tbPiQLgTU4ySYWyZGXbnVSAEzLc1uF8t5kJPXXgBmRP"
serum_multisig = "F3Uf5F61dmht1xuNNNkk3jnzj82TY56vVjVEhZALRkN"
[scripts]
test = "mocha -t 1000000 tests/"
test = "npx mocha -t 1000000 tests/"

3016
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

8
package.json Normal file
View File

@ -0,0 +1,8 @@
{
"private": true,
"devDependencies": {
"@project-serum/anchor": "=0.18.2",
"@project-serum/anchor-cli": "=0.18.2",
"mocha": "^9.1.3"
}
}