-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 3.02 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
{
"name": "proton-tsc",
"version": "0.3.58",
"license": "MIT",
"types": "./index.d.ts",
"main": "./assembly/index.ts",
"scripts": {
"build:token": "npx proton-asc ./assembly/token/token.contract.ts",
"build:balance": "npx proton-asc ./assembly/balance/balance.contract.ts",
"build:escrow": "npx proton-asc ./assembly/escrow/escrow.contract.ts",
"build:allow": "npx proton-asc ./assembly/allow/allow.contract.ts && npx proton-asc ./assembly/allow/allow_test.contract.ts",
"build:atomicassets": "npx proton-asc ./assembly/atomicassets/atomicassets.contract.ts --debug --sourceMap --target release",
"build:store": "npx proton-asc ./assembly/modules/store/store.test.ts",
"build:safemath": "npx proton-asc ./assembly/modules/safemath/safemath.test.ts",
"buil:bls": "npx proton-asc ./assembly/bls/bls.contract.ts",
"buil:test": "npx proton-asc ./assembly/test/test.contract.ts --debug --sourceMap",
"build": "run-p build:*",
"test:token": "mocha -s 250 ./assembly/token/*.spec.ts -r ts-node/register",
"test:balance": "mocha -s 250 ./assembly/balance/*.spec.ts -r ts-node/register",
"test:allow": "mocha -s 250 ./assembly/allow/*.spec.ts -r ts-node/register",
"test:escrow": "mocha -s 250 ./assembly/escrow/*.spec.ts -r ts-node/register",
"test:atomicassets": "mocha -s 250 ./assembly/atomicassets/*.spec.ts -r ts-node/register",
"test:store": "mocha -s 250 ./assembly/modules/store/store.spec.ts -r ts-node/register",
"test:safemath": "mocha -s 250 ./assembly/modules/safemath/safemath.spec.ts -r ts-node/register",
"tes:bls": "mocha -s 250 ./assembly/bls/bls.spec.ts -r ts-node/register",
"tes:test": "mocha -s 250 ./assembly/test/test.spec.ts -r ts-node/register",
"test": "run-p test:* --max-parallel 3",
"buildexamples": "npm run --prefix examples build",
"testexamples": "npm run --prefix examples test",
"core:escrow": "cat ./assembly/escrow/target/escrow.contract.abi | abi2core > ./assembly/escrow/target/escrow.client-types.ts",
"run:playground": "cross-env LOG_LEVEL=debug ts-node ./playground.ts",
"prepublishOnly": "npm run build && npm run test && npm run buildexamples && npm run testexamples && npx npm-dts generate --entry ./assembly/index.ts --force && npx replace-in-file --configFile=./replace.config.js"
},
"dependencies": {
"as-bignum": "^0.2.21",
"proton-asc": "^0.2.149"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"bin": "bin/proton-tsc.js",
"engineStrict": true,
"devDependencies": {
"@greymass/abi2core": "^1.1.0",
"@greymass/eosio": "^0.5.5",
"@proton/js": "^26.1.2",
"@proton/vert": "^0.3.20",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.22",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"crypto": "^1.0.1",
"mocha": "^9.2.2",
"npm-dts": "^1.3.12",
"npm-run-all": "^4.1.5",
"replace-in-file": "^6.3.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}