-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.04 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
80
81
82
83
84
85
86
{
"name": "@augmint/js",
"version": "0.3.6",
"description": "Augmint Javascript Library",
"keywords": [
"augmint javascript library A-EUR stablecoin web3 dapp"
],
"author": "Augmint",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/Augmint/augmint-js.git"
},
"bugs": {
"url": "https://github.com/Augmint/augmint-js/issues"
},
"homepage": "https://github.com/Augmint/augmint-js#readme",
"directories": {
"test": "test"
},
"bin": {
"augmint-cli": "scripts/augmint-cli.sh"
},
"engines": {
"node": "^10.15.3",
"yarn": ">=1.22.4"
},
"dependencies": {
"@augmint/contracts": "1.1.2",
"bn.js": "5.1.3",
"dotenv": "8.2.0",
"ulog": "2.0.0-beta.7",
"web3": "1.0.0-beta.36"
},
"devDependencies": {
"@typechain/web3-v1": "1.0.0",
"@types/bn.js": "4.11.6",
"@types/node": "^10.14.5",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-exclude": "2.0.2",
"cross-env": "7.0",
"eslint": "7.9.0",
"mocha": "8.1.3",
"rollup": "2.27.1",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-typescript2": "0.27.2",
"sinon": "9.0.3",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typechain": "2.0.0",
"typedoc": "0.19.1",
"typedoc-plugin-sourcefile-url": "1.0.6",
"typescript": "4.0.2",
"wait-on": "5.2.0"
},
"scripts": {
"clean": "rm -rf ./dist ./generated",
"//1": "The first typechain call is separated as a workaorund for latest typechain release when it's configured in ts-generator.json: ",
"//2": "Error: Loading plugin typechain failed. Plugin module has to export exactly one entity. Found 16 instead:",
"build": "yarn build:web3typings && yarn build:typings && rollup -c",
"build:typings": "ts-generator ./ts-generator.json",
"build:web3typings": "typechain --target=web3-v1 './node_modules/@augmint/contracts/abiniser/abis/*.json' --outDir=./generated/types",
"test": "yarn build && yarn cross-env NODE_ENV=test NODE_PATH=./ mocha 'test/**/*.test.js' --exit --timeout 5000",
"testOne": "yarn build && yarn cross-env NODE_ENV=test NODE_PATH=./ mocha $1 --exit --timeout 5000",
"ganache:start": "scripts/augmint-cli.sh ganache start --blockTime 1",
"ganache:stop": "scripts/augmint-cli.sh ganache stop",
"ganache:run": "scripts/augmint-cli.sh ganache run --blockTime 1",
"typedoc": "./generateDocs.sh",
"prepublishOnly": "yarn clean && yarn build",
"lint": "tslint -t stylish --project ."
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist",
"scripts/augmint-cli.sh"
],
"types": "dist/src/index.d.ts"
}