-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lemo-core-sdk",
"namespace": "LemoFoundationLtd",
"version": "0.12.1",
"description": "Lemochain JavaScript SDK, access to a lemochain node over RPC",
"main": "dist/lemo-core-sdk.cjs.js",
"module": "dist/lemo-core-sdk.esm.js",
"browser": "dist/lemo-core-sdk.js",
"dependencies": {
"@babel/runtime": "7.11.2",
"axios": "0.21.1",
"bignumber.js": "9.0.0",
"core-js": "3.6.5",
"lemo-tx": "^1.1.14",
"lemo-utils": "^1.1.10"
},
"devDependencies": {
"@babel/core": "7.11.1",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"babel-eslint": "11.0.0-beta.0",
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-plugin-import": "2.22.0",
"mocha": "7.2.0",
"nock": "13.0.4",
"nyc": "15.1.0",
"reify": "0.20.12",
"rollup": "2.26.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-uglify": "6.0.4",
"rollup-plugin-visualizer": "^4.1.0"
},
"scripts": {
"build": "rollup -c && rollup -c rollup-umd.config.js",
"dev": "rollup -c -w",
"test": "nyc mocha --recursive --exit",
"test:with-err-line-num": "mocha --recursive --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"pretest": "npm run build",
"lint": "eslint -f node_modules/eslint-friendly-formatter lib test --fix"
},
"files": [
"dist"
],
"mocha": {
"require": ["reify"]
},
"repository": {
"type": "git",
"url": "https://github.com/LemoFoundationLtd/lemo-core-sdk.git"
},
"keywords": [
"lemochain",
"javascript",
"API"
],
"engines": {
"node": ">= 6.0.0"
},
"license": "LGPL-3.0"
}