-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 KB
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
{
"name": "XToken.tz",
"version": "1.0.0",
"description": "XToken.tz is a digital security token compliant with FA 1.2 token standard",
"main": "index.js",
"scripts": {
"test": "mocha || true",
"fix": "standard --fix",
"compile": "sudo docker run --rm -v \"$PWD:$PWD\" -w \"$PWD\" ligolang/ligo:0.9.0 compile-contract ./src/XToken.tz.ligo main > build/XToken.tz || true",
"compile-windows": "docker run --rm -v \"%CD%\":/cd -w /cd ligolang/ligo:0.14.0 compile-contract ./src/XToken.tz.ligo main > build/XToken.tz"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"standard": {
"env": [
"mocha"
],
"globals": [
"artifacts",
"assert",
"contract"
]
},
"devDependencies": {
"@taquito/signer": "^8.0.3-beta.0",
"@taquito/taquito": "^8.0.3-beta.0",
"@taquito/utils": "^9.0.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"dotenv": "^8.2.0",
"faker": "^5.4.0",
"mocha": "^8.3.0",
"standard": "^16.0.3"
}
}