-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
{
"name": "idena-sdk-js",
"version": "0.1.0",
"description": "Idena SDK Javascript package",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/prettier": "^2.6.0",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^27.1.3",
"ts-jest-resolver": "^2.0.0",
"ts-proto": "1.110.0",
"typedoc": "^0.23.7",
"typedoc-plugin-markdown": "^3.11.14",
"typedoc-plugin-missing-exports": "^0.23.0",
"typescript": "^4.7.4"
},
"scripts": {
"doc": "typedoc src/index.ts --gitRevision master",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint \"*/**/*.{ts,js,json}\"",
"test:unit": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.js",
"update-docs": "npm run doc && npm run build",
"prepublishOnly": "npm run update-docs && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idena-network/idena-sdk-js.git"
},
"keywords": [],
"author": {
"name": "idena"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/idena-network/idena-sdk-js/issues"
},
"homepage": "https://github.com/idena-network/idena-sdk-js#readme",
"dependencies": {
"axios": "^0.27.2",
"bn.js": "^5.2.0",
"decimal.js": "^10.3.1",
"js-sha3": "^0.8.0",
"long": "^5.2.0",
"protobufjs": "^6.11.2",
"secp256k1": "^4.0.3"
}
}