UNPKG

2.13 kBJSONView Raw
1{
2 "name": "js-conflux-sdk",
3 "description": "JavaScript Conflux Software Development Kit",
4 "version": "1.0.0-beta.1",
5 "license": "LGPL-3.0",
6 "author": "Haizhou@conflux-chain.org",
7 "repository": "https://github.com/Conflux-Chain/js-conflux-sdk.git",
8 "keywords": [
9 "conflux",
10 "sdk"
11 ],
12 "main": "src/index.js",
13 "types": "./types/index.d.ts",
14 "browser": "dist/js-conflux-sdk.umd.min.js",
15 "browserify-browser": {
16 "secp256k1": "secp256k1/elliptic"
17 },
18 "files": [
19 "dist",
20 "mock",
21 "src",
22 "types"
23 ],
24 "browserslit": "cover 99.5%",
25 "dependencies": {
26 "@babel/runtime": "^7.8.4",
27 "big.js": "^5.2.2",
28 "jsbi": "^3.1.1",
29 "keccak": "^2.0.0",
30 "lodash": "^4.17.19",
31 "scrypt-js": "^3.0.1",
32 "secp256k1": "^3.7.1",
33 "superagent": "^5.1.0",
34 "websocket": "^1.0.31"
35 },
36 "devDependencies": {
37 "@babel/core": "^7.8.4",
38 "@babel/plugin-transform-runtime": "^7.8.3",
39 "@babel/preset-env": "^7.8.4",
40 "@geekberry/jsdoc-to-md": "0.0.8",
41 "@types/node": "^14.0.23",
42 "babel-plugin-lodash": "^3.3.4",
43 "babelify": "^10.0.0",
44 "browserify": "^16.5.1",
45 "concurrently": "^5.1.0",
46 "eslint": "^7.12.0",
47 "eslint-config-airbnb-base": "^14.0.0",
48 "eslint-plugin-import": "^2.18.2",
49 "exorcist": "^1.0.1",
50 "fs-extra": "^8.1.0",
51 "jest": "26.6.0",
52 "minify-stream": "^2.0.1",
53 "mold-source-map": "^0.4.0",
54 "solc": "^0.6.10"
55 },
56 "resolutions": {
57 "tinyify/acorn-node/acorn": "7.1.1",
58 "eslint/espree/acorn": "7.1.1",
59 "tinyify/unassertify/unassert/acorn": "7.1.1",
60 "**/minimist": "^1.2.3",
61 "**/kind-of": "^6.0.3",
62 "**/elliptic": "^6.5.3",
63 "**/lodash": "^4.17.20",
64 "**/babel-jest": "^26.6.0",
65 "jest/jest-cli/jest-config/jest-environment-jsdom/jsdom/acorn-globals/acorn": "6.4.1"
66 },
67 "scripts": {
68 "eslint": "eslint ./src ./test ./mock",
69 "build": "node scripts/build-frontend.js",
70 "document": "node scripts/document.js",
71 "prepublishOnly": "npm run build",
72 "test": "jest --coverage"
73 }
74}