-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.05 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.05 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
{
"name": "zns",
"version": "0.0.0",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.136",
"jest": "^24.9.0",
"kaya-cli": "https://github.com/unstoppabledomains/kaya.git#4280e86",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"dependencies": {
"@zilliqa-js/zilliqa": "^0.8.3",
"hash.js": "^1.1.7",
"lodash": "^4.17.15",
"tslib": "^1.9.3"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsc -p .",
"verify": "[ -x ./runner/bin/scilla-runner ] && [ -x ./runner/bin/scilla-checker ] && [ -d ./runner/src/stdlib ] || (echo 'Scilla libraries are not symlinked' && exit 1)",
"contracts": "yarn verify && sh ./scripts/contractInfo.sh",
"test": "yarn test:kaya",
"test:kaya": "yarn contracts && ZIL_NODE_TYPE=kaya jest smart-contract.test.ts",
"test:testnet": "yarn contracts && ZIL_NODE_TYPE=testnet jest smart-contract.test.ts",
"update-snapshot": "jest -u -t",
"firebase-auth": "firebase login"
}
}