-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 963 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 963 Bytes
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
{
"name": "blocace",
"version": "0.1.0",
"description": "a JS client to access Blocace server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/codingpeasant/blocace-js"
},
"keywords": [
"blocace",
"blockchain",
"database",
"nosql",
"bitcoin",
"ethereum"
],
"author": "codingpeasant <zhaofanzf@gmail.com>",
"contributors": [
{
"name": "Fan Zhao",
"email": "zhaofanzf@gmail.com",
"url": "https://github.com/codingpeasant"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/codingpeasant/blocace/issues"
},
"homepage": "https://github.com/codingpeasant/blocace",
"files": [
"index.js",
"README.*",
"package.json"
],
"scripts": {
"build": "webpack"
},
"dependencies": {
"crypto-js": "^3.3.0",
"ethers": "^4.0.43",
"axios": "^0.19.1"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}