-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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": "iov-connect",
"version": "0.0.1",
"description": "Connecting iov-core and wallet-connet",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/confio/iov-connect",
"repository": {
"type": "git",
"url": "https://github.com/confio/iov-connect.git"
},
"bugs": {
"url": "https://github.com/confio/iov-connect/issues"
},
"private": false,
"scripts": {
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"test": "yarn build && node jasmine-testrunner.js",
"build": "shx rm -rf ./build && tsc",
"cli": "iov-cli"
},
"devDependencies": {
"@types/jasmine": "^3.3.13",
"jasmine": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"prettier": "^1.18.2",
"shx": "^0.3.2",
"source-map-support": "^0.5.12",
"typescript": "~3.4"
},
"dependencies": {
"@iov/cli": "^0.15.0",
"@iov/core": "^0.15.0"
}
}