-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@idealight-labs/anyweb-js-sdk",
"description": "AnyWeb JavaScript Software Development Kit",
"version": "1.3.6",
"license": "LGPL-3.0",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/IdeaLightLabs/AnyWeb-JS-SDK.git"
},
"keywords": [
"anyweb",
"sdk"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"browser": "dist/src/index.js",
"browserify-browser": {
"secp256k1": "secp256k1/elliptic"
},
"files": [
"dist",
"src",
"lib",
"types",
"anyweb-js-sdk.umd.min.js"
],
"browserslit": "cover 99.5%",
"dependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@conflux-dev/conflux-address-js": "^1.3.12",
"abi-util-lite": "^0.1.0",
"big.js": "^5.2.2",
"commander": "^8.0.0",
"conventional-changelog-cli": "^2.2.2",
"js-conflux-sdk": "^2.0.0",
"keccak": "^2.0.0",
"node-forge": "^1.2.1",
"rlp": "^2.2.7",
"scrypt-js": "^3.0.1",
"secp256k1": "^3.7.1",
"superagent": "^6.1.0",
"typescript": "^4.5.5",
"websocket": "^1.0.31"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.8.4",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-angular": "^16.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^14.0.23",
"@types/node-forge": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-plugin-lodash": "^3.3.4",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"commitizen": "^4.2.4",
"concurrently": "^5.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^4.0.0",
"exorcist": "^1.0.1",
"fs-extra": "^8.1.0",
"husky": "^7.0.0",
"jest": "^27.4.7",
"jsbi": "^3.1.4",
"jsdoc-to-markdown": "^7.1.0",
"minify-stream": "^2.0.1",
"mold-source-map": "^0.4.0",
"prettier": "^2.5.1",
"solc": "^0.6.10",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"tsify": "^5.0.4",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12"
},
"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",
"**/elliptic": "^6.5.3",
"**/lodash": "^4.17.20",
"**/babel-jest": "^26.6.0",
"jest/jest-cli/jest-config/jest-environment-jsdom/jsdom/acorn-globals/acorn": "6.4.1"
},
"scripts": {
"lint": "eslint ./src ./test",
"lint:fix": "eslint ./src ./test --fix",
"build": "node scripts/build-frontend.js",
"document": "typedoc --plugin typedoc-plugin-markdown --out docs/api/ src/index.ts",
"prepublishOnly": "npm run build:lib && npm run build",
"test": "jest --coverage",
"build:lib": "tsc",
"dev": "tsc --watch",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"commit": "git cz",
"release": "standard-version --release-as",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/IdeaLightLabs/AnyWeb-JS-SDK/issues"
},
"homepage": "https://github.com/IdeaLightLabs/AnyWeb-JS-SDK#readme",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
}
}