-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
42
43
44
45
46
47
48
{
"name": "blocktron-lib",
"version": "0.0.5",
"description": "A simple blockchain data structure library",
"main": "dist/main.min.js",
"scripts": {
"precommit": "pretty-quick --staged",
"test": "jest test/blocktron-lib.spec.js",
"build-dev": "webpack --config=webpack.dev.config.js",
"build": "webpack --config=webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blocktron-Project/blocktron-lib.git"
},
"keywords": [
"blockchain",
"javascript",
"nodejs",
"decentralized",
"apps",
"cryptography",
"blocktron",
"library"
],
"author": "Sandeep Vattapparambil",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blocktron-Project/blocktron-lib/issues"
},
"homepage": "https://github.com/Blocktron-Project/blocktron-lib#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.0.1",
"jest": "^23.1.0",
"prettier": "^1.13.5",
"prettier-webpack-plugin": "^1.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"sha256": "^0.2.0"
}
}