-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 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
{
"name": "dmc-lib",
"version": "1.0.8",
"description": "Damoclis smart contract library",
"main": "index.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha -r ts-node/register test/**/*.test.ts",
"printTestBuild": "node_modules/dmcscript/bin/asc ./example/printTest/index.ts --dispatch -t ./example/printTest/outputFile.wat --abiFile ./example/printTest/outputFile.abi -b ./example/printTest/outputFile.wasm --runtime none ",
"dmcbuild": "node_modules/dmcscript/bin/asc ./example/helloworld/helloworld.ts --dispatch -t outputFile.wat --abiFile outputFile.abi -b outputFile.wasm --runtime none "
},
"repository": {
"type": "git",
"url": "git+https://github.com/damoclis/dmc-lib.git"
},
"keywords": [
"smart",
"contract"
],
"author": "damoclis",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/damoclis/dmc-lib/issues"
},
"homepage": "https://github.com/damoclis/dmc-lib#readme",
"dependencies": {
"dmcscript": "^0.1.78"
}
}