-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"author": "evan GmbH",
"dependencies": {
"@babel/runtime": "^7.3.1",
"@types/node": "^12.6.8",
"ajv": "^6.10.2",
"async-mutex": "^0.1.3",
"bignumber.js": "3.0.1",
"bs58": "^4.0.1",
"crypto-browserify": "^3.12.0",
"ethereumjs-tx": "1.3.4",
"ipfs-api": "^26.1.2",
"prottle": "^1.0.3",
"uuid": "^3.2.1",
"web3": "2.0.0-alpha",
"web3-eth-abi": "2.0.0-alpha",
"yaeti": "^1.0.2"
},
"description": "formalized Ethereum based smart contract interaction description",
"devDependencies": {
"@types/bn.js": "^4.11.5",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-spies": "^1.0.1",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"common-shakeify": "^0.6.2",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^2.2.0",
"mocha": "^6.2.0",
"nyc": "^15.0.1",
"request": "^2.83.0",
"ts-node": "^8.3.0",
"typescript": "^3.7.4"
},
"homepage": "https://dbcp.online/",
"husky": {
"hooks": {
"pre-commit": "eslint --ext .js,.ts -c .eslintrc.js ./src && yarn build-test"
}
},
"keywords": [
"blockchain",
"ethereum",
"smart-contracts",
"javascript",
"typescript",
"API"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"name": "@evan.network/dbcp",
"repository": {
"type": "git",
"url": "[email protected]:evannetwork/dbcp.git"
},
"scripts": {
"build": "tsc",
"build-test": "tsc -p ./tsconfig-test.json",
"deploy": "node scripts/deploy.js",
"lint": "eslint --ext .js,.ts -c .eslintrc.js ./src",
"test": "npm run build && mocha --exit --inspect -r ts-node/register src/**/*.spec.ts src/*.spec.ts",
"testunit": "npm run build && mocha --exit --inspect -r ts-node/register $*",
"testunitbail": "npm run build && mocha -b --exit --inspect -r ts-node/register $*",
"testunitbrk": "npm run build && mocha --exit --inspect-brk -r ts-node/register $*",
"testunitcoverage": "npm run build && nyc -r lcov -e .ts -x \"**/*.spec.ts\" -x \"lib\" mocha --exit -r ts-node/register $TESTSPECS && nyc report --reporter=json > coverage/coverage.json"
},
"types": "./dist/index.d.ts",
"version": "1.11.2"
}