forked from Zilliqa/zilliqa-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.94 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
{
"name": "zilliqa-js",
"version": "0.1.19",
"license": "SEE LICENSE in LICENSE",
"description": "zilliqa js library",
"repository": "https://github.com/Zilliqa/Zilliqa-Javascript-Library",
"main": "dist/zilliqa.server.js",
"browser": "dist/zilliqa.client.js",
"typings": "dist/index.d.ts",
"sideEffects": [
"./src/index.ts"
],
"scripts": {
"build": "rimraf dist/* && tsc --emitDeclarationOnly && cross-env NODE_ENV=production webpack --config webpack.config.js",
"test": "jest -c jest.config.js"
},
"dependencies": {
"bn.js": "^4.11.8",
"bsert": "^0.0.3",
"cross-fetch": "^2.2.2",
"elliptic": "^6.4.0",
"encoding": "^0.1.12",
"hash.js": "^1.1.5",
"hmac-drbg": "^1.0.1",
"node-fetch-polyfill": "^2.0.6",
"randombytes": "^2.0.6",
"valid-url": "^1.0.9",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.56",
"@babel/core": "7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.54",
"@babel/plugin-proposal-decorators": "7.0.0-beta.54",
"@babel/plugin-proposal-do-expressions": "7.0.0-beta.54",
"@babel/plugin-proposal-export-default-from": "7.0.0-beta.54",
"@babel/plugin-proposal-export-namespace-from": "7.0.0-beta.54",
"@babel/plugin-proposal-function-sent": "7.0.0-beta.54",
"@babel/plugin-proposal-json-strings": "7.0.0-beta.54",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0-beta.54",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0-beta.54",
"@babel/plugin-proposal-numeric-separator": "7.0.0-beta.54",
"@babel/plugin-proposal-optional-chaining": "7.0.0-beta.54",
"@babel/plugin-proposal-pipeline-operator": "7.0.0-beta.54",
"@babel/plugin-proposal-throw-expressions": "7.0.0-beta.54",
"@babel/plugin-syntax-dynamic-import": "7.0.0-beta.54",
"@babel/plugin-syntax-import-meta": "7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.0.0-beta.56",
"@babel/polyfill": "7.0.0-beta.54",
"@babel/preset-env": "7.0.0-beta.54",
"@babel/preset-typescript": "^7.0.0-beta.56",
"@babel/runtime": "^7.0.0-beta.56",
"@trust/webcrypto": "^0.9.2",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.6",
"@types/valid-url": "^1.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"chai": "*",
"cross-env": "^5.2.0",
"gulp": "^3.9.1",
"gulp-uglify-es": "^1.0.4",
"gulp-util": "^3.0.8",
"hoek": "^5.0.3",
"jest": "^23.4.2",
"jest-fetch-mock": "^1.6.5",
"jest-watch-typeahead": "^0.2.0",
"mocha": "^5.2.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.1.2",
"webpack": "^4.16.5",
"webpack-command": "^0.4.1"
}
}