-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
{
"name": "jsvcn",
"version": "2.2.3",
"description": "CodeNotary JS Client",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "rollup --config rollup.config.js"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"automock": false,
"setupFiles": [
"./setupJest.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vchain-us/jsvcn.git"
},
"keywords": [
"vcn",
"codenotary",
"vchain",
"js",
"javascript",
"blockchain"
],
"author": "vChain Inc.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/vchain-us/jsvcn"
},
"homepage": "https://github.com/vchain-us/jsvcn#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"babel-loader": "^8.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"jest": "^25.2.7",
"jest-fetch-mock": "^3.0.3",
"lodash": "^4.17.20",
"mocktract": "github:matryx/mocktract-ethers.js",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"axios": "^0.21.1",
"ethers": "^5.0.26",
"filereader": "^0.10.3",
"js-md5": "^0.7.3",
"js-sha1": "^0.6.0",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0"
}
}