forked from Conflux-Chain/js-conflux-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.15 KB
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": "js-conflux-sdk",
"description": "JavaScript Conflux Software Development Kit",
"version": "0.9.2",
"license": "LGPL-3.0",
"author": "Haizhou@conflux-chain.org",
"homepage": "https://github.com/Conflux-Chain/js-conflux-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Conflux-Chain/js-conflux-sdk.git"
},
"bugs": {
"url": "https://github.com/Conflux-Chain/js-conflux-sdk/issues"
},
"keywords": [
"conflux",
"sdk"
],
"main": "lib/main.js",
"module": "esm/index.js",
"browser": {
"secp256k1": "secp256k1/elliptic",
"lib/main.js": "esm/main.js"
},
"files": [
"mock",
"lib",
"esm",
"dist"
],
"browserslit": "cover 99.5%",
"esm": {
"cjs": {
"dedefault": true
}
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"big.js": "^5.2.2",
"esm": "^3.2.25",
"jsbi": "^3.1.1",
"keccak": "^2.0.0",
"lodash": "^4.17.15",
"secp256k1": "^3.7.1",
"superagent": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@geekberry/jsdoc-to-md": "^0.0.3",
"babel-plugin-lodash": "^3.3.4",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"concurrently": "^5.1.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"exorcist": "^1.0.1",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"prepend-file": "^1.3.1",
"tinyify": "^2.5.2",
"walker": "^1.0.7"
},
"resolutions": {
"tinyify/acorn-node/acorn": "7.1.1",
"eslint/espree/acorn": "7.1.1",
"tinyify/unassertify/unassert/acorn": "7.1.1",
"**/minimist": "^1.2.3",
"**/kind-of": "^6.0.3",
"jest/jest-cli/jest-config/jest-environment-jsdom/jsdom/acorn-globals/acorn": "6.4.1"
},
"scripts": {
"eslint:fix": "eslint --fix ./src ./test ./mock",
"build": "npm run build:backend & npm run build:frontend",
"build:frontend": "node development/build-frontend.js",
"build:backend": "node development/build-backend.js",
"prepublishOnly": "npm run build",
"test": "jest"
}
}