-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
38
39
40
41
42
43
44
45
46
47
{
"name": "typetology",
"version": "0.0.3",
"description": "Typescript bindings for Ontology smart contracts",
"keywords": [
"typetology",
"ontology",
"typescript",
"typechain"
],
"main": "./dist/index.js",
"bin": "./dist/typetology-cli.js",
"scripts": {
"clean": "npm run clean:dist && npm run clean:test && npm run clean:gen",
"clean:test": "rm -rf ./test-out",
"clean:dist": "rm -rf ./dist",
"clean:gen": "rm -rf ./dest",
"compile": "npm run clean:dist && tsc -p ./tsconfig.json",
"test": "npm run test:no-clean && npm run clean:test",
"test:no-clean": "rm -rf test-out && mocha -r ts-node/register ./test/**/*.ts",
"gen": "ts-node ./src/typetology-cli.ts -o ./dest ./test/abi/*.json --force"
},
"author": "Muzika Foundation",
"license": "LGPL-3.0",
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/glob": "^5.0.35",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"ontology-ts-sdk": "^0.9.1",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"dependencies": {
"command-line-args": "^5.0.2",
"glob": "^7.1.2"
},
"peerDependencies": {
"ontology-ts-sdk": "0.9.x"
},
"files": [
"dist",
"runtime"
]
}