-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 2.37 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
53
54
55
56
57
58
59
60
61
{
"name": "@substrate/asset-transfer-api",
"version": "0.4.4",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "substrate-exec-rimraf ./lib && substrate-exec-tsc",
"build:scripts": "substrate-exec-rimraf scripts/build/ && substrate-exec-tsc --project scripts/tsconfig.json",
"build:examples": "substrate-exec-rimraf examples/build/ && substrate-exec-tsc --project examples/tsconfig.json",
"build:e2e": "substrate-exec-rimraf e2e-tests/build/ && substrate-exec-tsc --project e2e-tests/tsconfig.json",
"start": "node ./lib/index.js",
"start:zombienet-post-script": "yarn build:scripts && node ./scripts/build/testNetworkSetup.js",
"start:zombienet-foreign-assets-script": "yarn build:scripts && node ./scripts/build/testNetworkForeignAssets.js",
"start:zombienet-liquidity-assets-script": "yarn build:scripts && node ./scripts/build/testNetworkLiquidAssets.js",
"zombienet": "./zombienet/zombienet-linux-x64 -p native spawn ./zombienet/medium-network.toml",
"e2e:zombienet": "./e2e-tests/zombienet.sh",
"e2e:assets": "./e2e-tests/tests.sh --assets",
"e2e:local": "./e2e-tests/tests.sh --local",
"e2e:liquidity-assets": "./e2e-tests/tests.sh --liquidity-assets",
"e2e:foreign-assets": "./e2e-tests/tests.sh --foreign-assets",
"lint": "substrate-dev-run-lint",
"lint:fix": "substrate-dev-run-lint --fix",
"test": "NODE_ENV=test substrate-exec-jest --detectOpenHandles",
"docs": "typedoc",
"deploy": "yarn build && npm publish"
},
"engines": {
"node": ">=18.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/asset-transfer-api.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paritytech/asset-transfer-api/issues"
},
"homepage": "https://github.com/paritytech/asset-transfer-api#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@substrate/dev": "^0.9.0",
"@types/cli-progress": "^3",
"ansi-colors": "^4.1.3",
"chalk": "5.3.0",
"cli-progress": "^3.12.0",
"typedoc": "^0.26.10",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-theme-hierarchy": "^5.0.3"
},
"dependencies": {
"@polkadot/api": "14.2.2",
"@polkadot/api-augment": "14.2.2",
"@polkadot/types": "14.2.2",
"@polkadot/types-codec": "14.2.2",
"@polkadot/util": "13.2.2",
"@polkadot/util-crypto": "13.2.2",
"@substrate/asset-transfer-api-registry": "^0.2.24"
}
}