-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "meta-contract",
"version": "0.4.10",
"description": "Meta Contract SDK",
"main": "dist/index.js",
"browser": "dist/metaContract.browser.min.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"compile-bcp01": "node tools/compiler.js --bcp01",
"compile-bcp01-dev": "node tools/compiler.js --bcp01 --debug",
"compile-bcp02": "node tools/compiler.js --bcp02",
"compile-bcp02-dev": "node tools/compiler.js --bcp02 --debug",
"compile-mcp01": "node tools/compiler.js --mcp01",
"compile-mcp01-dev": "node tools/compiler.js --mcp01 --debug",
"compile-mcp02": "node tools/compiler.js --mcp02",
"compile-mcp02-dev": "node tools/compiler.js --mcp02 --debug",
"build": "npx gulp",
"build:watch": "gulp dev",
"rollup": "rollup --config",
"stest": "mocha -r ts-node/register tests/**/*scrypttest.* --reporter spec --timeout 600000",
"stest-ft-genesis": "mocha -r ts-node/register tests/scrypt/tokenGenesis.scrypttest.ts --watch --reporter spec --timeout 600000",
"stest-nft-genesis": "mocha -r ts-node/register tests/scrypt/nftGenesis.scrypttest.ts --watch --reporter spec --timeout 600000",
"stest-ft": "mocha -r ts-node/register tests/scrypt/token.scrypttest.ts --watch --reporter spec --timeout 600000",
"atest": "mocha -r ts-node/register tests/acceptance/**/*.test.ts --timeout 600000",
"atest-ft": "mocha -r ts-node/register tests/acceptance/bcp02/ft.test.ts --timeout 5000000 --debugUri ",
"atest-nft": "mocha -r ts-node/register tests/acceptance/bcp01/nft.test.ts --timeout 5000000 --debugUri ",
"atest-wallet": "mocha -r ts-node/register tests/acceptance/others/wallet.test.ts --timeout 5000000 --debugUri ",
"jw": "jest --watchAll"
},
"keywords": [
"Smart Contract",
"Meta Contract",
"MVC",
"Microvision Chain",
"NFT",
"TOKEN",
"MCP01",
"MCP02"
],
"author": "MVC-Labs",
"license": "MIT",
"dependencies": {
"mvc-scrypt": "0.1.2",
"node-fetch": "2"
},
"devDependencies": {
"@types/chai": "^4.2.20",
"@types/jest": "^28.1.6",
"@types/mocha": "^8.2.2",
"@types/node": "^17.0.0",
"@types/node-fetch": "2",
"axios": "^0.27.2",
"browserify": "^17.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"dotenv": "^16.0.1",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typedoc": "^3.0.1",
"gulp-typescript": "*",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^5.3.1",
"jest": "^28.1.3",
"merge2": "^1.4.1",
"minimist": "1.2.5",
"mocha": "^9.0.2",
"prettier": "2.7.1",
"rollup": "^2.78.1",
"standalonify": "^0.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tsify": "^5.0.4",
"typescript": "^4.5.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watch": "^1.0.2",
"watchify": "^4.0.0"
}
}