-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.75 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
52
{
"name": "@tensor-hq/tensor-tests-common",
"version": "0.6.0",
"description": "Common TEST utility methods used by Tensor.",
"sideEffects": false,
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"/dist/esm/**/*",
"/dist/cjs/**/*"
],
"scripts": {
"test": "yarn ts-mocha -p ./tsconfig.cjs.json tests/**/*.test.ts",
"build": "rm -rf ./dist && yarn tsc && yarn tsc -p tsconfig.cjs.json",
"publish:private": "yarn build && yarn npm publish",
"publish:public": "yarn build && npm publish --access public --registry https://registry.npmjs.org",
"publish:all": "yarn publish:private && yarn publish:public"
},
"repository": "[email protected]:tensor-hq/tensor-tests-common.git",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@metaplex-foundation/mpl-bubblegum": "^0.8.0",
"@metaplex-foundation/mpl-token-auth-rules": "^3.0.1",
"@metaplex-foundation/mpl-token-metadata": "^2.13.0",
"@metaplex-foundation/umi": "^0.8.10",
"@msgpack/msgpack": "^3.0.0-beta2",
"@saberhq/solana-contrib": "^1.14.11",
"@solana/spl-account-compression": "^0.2.0",
"@solana/spl-token": "^0.3.9",
"@tensor-hq/tensor-common": "^8.0.8",
"@tensor-oss/tensorswap-sdk": "^4.4.2",
"bs58": "^5.0.0",
"chai-as-promised": "^7.1.1",
"exponential-backoff": "^3.1.1",
"js-sha3": "^0.9.2",
"merkletreejs": "^0.3.11"
},
"devDependencies": {
"@metaplex-foundation/js": "^0.20.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9"
},
"packageManager": "[email protected]"
}