-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 3.22 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
62
63
64
65
66
67
{
"name": "@castframework/cast-tz-v1",
"version": "1.0.0",
"description": "Tezos Smartcontracts for the CAST framework",
"main": "index.js",
"author": "Société Générale Forge",
"license": "See license in LICENSE",
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/shelljs": "^0.8.9",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"husky": "7.0.4",
"jq.node": "^2.4.0",
"kubernetes-client": "^9.0.0",
"minimist": "^1.2.5",
"mocha": "^8.4.0",
"nodemon": "^2.0.15",
"shelljs": "^0.8.4",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"dependencies": {
"@castframework/smartpy-cli": "1.0.2-alpha.3",
"@taquito/signer": "^11.0.2",
"@taquito/taquito": "^11.0.2",
"bignumber.js": "^9.0.2",
"blakejs": "^1.1.1",
"bs58check": "^2.1.2",
"chai": "^4.3.4",
"faker": "^5.5.3"
},
"scripts": {
"deploy": "npm run clean && npm run build:tez && npm run originate",
"build": "npm run clean && npm run build:ts && npm run build:tez",
"build:ts": "tsc --noEmit",
"build:tez": "./scripts/toolchain/cli/compile.ts",
"build:tez:watch": "$(npm bin)/nodemon --config build_watch.json",
"lint:ts": "eslint --ignore-path .gitignore --ext ts .",
"lint": "npm run lint:ts",
"clean": "rm -rf src/__pycache__ ; rm -rf src/*/dist; rm -rf src/*/__pycache__; rm -rf src/*/*/dist ; rm -rf src/*/*/__pycache__ ",
"init": "bin/init",
"originate": "NETWORK_FOLDER=../../../networks/local ./scripts/toolchain/cli/platform.ts",
"distribute": "./scripts/toolchain/cli/distribute.ts",
"infos": "./scripts/toolchain/cli/infos.ts",
"infos:local": "NETWORK_FOLDER=../../../networks/local ./scripts/toolchain/cli/infos.ts",
"infos:testnet": "NETWORK_FOLDER=../../../networks/testnet ./scripts/toolchain/cli/infos.ts",
"test": "npm run deploy && npm run test:only",
"test:local": "NETWORK_FOLDER=../../../networks/local npm run test:only",
"test:testnet": "NETWORK_FOLDER=../../../networks/testnet npm run test",
"test:only": "NETWORK_FOLDER=../../../networks/local ts-mocha --timeout=100000 ./src/**/*.spec.ts",
"test:InstrumentRegistry": "ts-mocha --timeout=100000 './src/instrumentRegistry/test/InstrumentRegistry.spec.ts' ",
"test:BondCreateSubscription": "ts-mocha --timeout=100000 './src/bond/test/CreateSubscription.spec.ts' ",
"test:BondForgeTokenFactory": "ts-mocha --timeout=100000 './src/bond/test/ForgeTokenFactory.spec.ts' ",
"test:BondOperatorsManagement": "ts-mocha --timeout=100000 './src/bond/test/OperatorsManagement.spec.ts' ",
"test:BondPlayTransition": "ts-mocha --timeout=100000 './src/bond/test/PlayTransition.spec.ts' ",
"test:EMTNCreateSubscription": "ts-mocha --timeout=100000 './src/emtn/test/CreateSubscription.spec.ts' ",
"test:EMTNForgeTokenFactory": "ts-mocha --timeout=100000 './src/emtn/test/ForgeTokenFactory.spec.ts' ",
"test:EMTNOperatorsManagement": "ts-mocha --timeout=100000 './src/emtn/test/OperatorsManagement.spec.ts' ",
"test:EMTNPlayTransition": "ts-mocha --timeout=100000 './src/emtn/test/PlayTransition.spec.ts' "
}
}