-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·37 lines (37 loc) · 1.27 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
{
"name": "spokkz-ontology-smart-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init": "npm run init:python",
"init:python": "cd contracts && virtualenv venv && . venv/*/activate && pip install -r requirements.txt",
"clean": "npm run clean:python && npm run clean:build",
"clean:python": "cd contracts && rm -rf venv",
"clean:build": "rm -rf build",
"build": "cd contracts && . venv/*/activate && python compile.py -o ../build ./contracts/*.py",
"rebuild": "npm run clean && npm run init && npm run build",
"deploy:local": "npm run rebuild && ts-node utils/cli.ts --mode local --deploy",
"test": "npm run build && mocha -r ts-node/register ./test/**/*.ts --timeout 60000",
"page": "cd contracts && . venv/*/activate && python ../src/token_explorer.py"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/command-line-args": "^5.0.0",
"@types/glob": "^5.0.35",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.2",
"chai": "^4.1.2",
"command-line-args": "^5.0.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"dependencies": {
"chalk": "^2.4.1",
"glob": "^7.1.2",
"ontology-ts-sdk": "^0.9.3"
}
}