forked from tasitlabs/tasit-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "tasit-action",
"version": "0.0.1",
"description": "A library for using Ethereum smart contracts that abstracts away the low-level blockchain-related details so that developers can focus on the core business logic for their app",
"main": "dist/index.js",
"keywords": [
"ethereum",
"dapp",
"react",
"native"
],
"author": "Tasit Labs",
"homepage": "https://github.com/tasitlabs/TasitSDK/tree/develop/packages/tasit-action#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tasitlabs/tasitsdk.git"
},
"scripts": {
"prepare": "npx babel src --out-dir dist --ignore **/*.test.js",
"test": "npm run lint && npx mocha src/*.test.js --require @babel/register --no-timeouts",
"lint": "npx prettier src/* --write"
},
"bugs": {
"url": "https://github.com/tasitlabs/tasitsdk/issues"
},
"dependencies": {
"ethers": "^4.0.12",
"@babel/runtime": "^7.1.5"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"tasit-account": "^0.0.1"
}
}