This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "@ergoplatform/ergo-js",
"version": "1.6.0",
"description": "",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"repository": "https://github.com/ergoplatform/ergo-js",
"dependencies": {
"axios": "0.19.1",
"blakejs": "^1.1.0",
"bn.js": "^4.11.8",
"bs58": "^4.0.1",
"elliptic": "^6.5.2",
"is_js": "^0.9.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/node": "^7.8.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.0",
"@babel/plugin-proposal-pipeline-operator": "^7.8.0",
"@babel/plugin-transform-async-to-generator": "^7.8.0",
"@babel/polyfill": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"axios-mock-adapter": "^1.16.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.6.1",
"core-js": "^3.6.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-fbjs": "^3.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-no-for-of-loops": "^1.0.0",
"jest": "^24.9.0",
"node-loader": "^0.6.0",
"terser-webpack-plugin": "^2.3.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"majestic": {
"jestScriptPath": "../node_modules/jest/bin/jest.js",
"args": [
"--config=./jest.config.js"
],
"env": {
"CI": "true"
}
},
"scripts": {
"test": "npx eslint -c .eslintrc.yml ./src ./tests && jest",
"build": "webpack --mode production",
"size": "npm run build && size-limit",
"styleFix": "npx eslint -c .eslintrc.yml ./src ./tests --fix"
},
"author": "Ergoplatform",
"license": "MIT",
"bugs": {
"url": "https://github.com/ergoplatform/ergo-js/issues"
},
"homepage": "https://github.com/ergoplatform/ergo-js",
"browserslist": [
"defaults"
]
}