-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 910 Bytes
/
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
{
"name": "bltjs",
"version": "1.0.1",
"description": "A BigchainDB Load Tester",
"main": "dist/Blt.js",
"scripts": {
"test": "mocha",
"compile": "cd ./src && tsc",
"bundle": "webpack",
"documentation": "cd src/ && typedoc --out ../docs/ .",
"build": "npm run compile && npm run bundle && npm run test && npm run documentation"
},
"repository": {
"type": "git",
"url": "https://www.github.com/artusvranken/bltjs"
},
"keywords": [
"BigchainDB",
"blockchain",
"blt",
"load",
"testing",
"TypeScript"
],
"author": "Artus Vranken",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bigchaindb-driver": "^4.0.0",
"bip39": "^2.5.0"
},
"devDependencies": {
"mocha": "^5.0.5",
"path": "^0.12.7",
"typedoc": "^0.11.1",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}