-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
105 lines (105 loc) · 3.9 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
{
"name": "minter-js-sdk",
"version": "0.45.1",
"description": "JS SDK for Minter Blockchain",
"main": "dist/cjs/index.js",
"module": "src/index.js",
"browser": {
"./dist/cjs/index.js": "./dist/index.js"
},
"unpkg": "dist/index.min.js",
"files": [
"/src/",
"/dist/"
],
"scripts": {
"build": "npm run build:browser && npm run build:browser-minify && npm run build:cjs",
"build:browser": "rollup -c build/rollup.config.js",
"build:browser-minify": "rollup -c build/rollup.uglify.config.js",
"build:cjs": "rollup -c build/rollup.cjs.config.js",
"prepublishOnly": "npm run lint && npm run test:light",
"lint": "eslint --ext .js ./src ./test",
"lint:fix": "eslint --ext .js ./src ./test --fix",
"test": "npm run test:src && npm run build && npm run jest:bundle-browser && npm run jest:bundle-cjs",
"test:light": "npm run test:src && npm run build && npm run jest:bundle-browser-unit && npm run jest:bundle-cjs-unit",
"test:src": "npm run jest-coverage",
"test:bundle-browser": "npm run build:browser && npm run jest:bundle-browser",
"test:bundle-cjs": "npm run build:cjs && npm run jest:bundle-cjs",
"test:bundle-browser-unit": "npm run build:browser && npm run jest:bundle-browser-unit",
"test:bundle-cjs-unit": "npm run build:cjs && npm run jest:bundle-cjs-unit",
"jest:src": "jest",
"jest:src-unit": "jest --testPathIgnorePatterns='<rootDir>/test/api'",
"jest:src-e2e": "jest --testPathPattern='api/'",
"jest:bundle-browser": "jest --config jest-bundle-browser.config.js",
"jest:bundle-cjs": "jest --config jest-bundle-cjs.config.js",
"jest:bundle-browser-unit": "jest --config jest-bundle-browser.config.js --testPathIgnorePatterns='<rootDir>/test/api'",
"jest:bundle-cjs-unit": "jest --config jest-bundle-cjs.config.js --testPathIgnorePatterns='<rootDir>/test/api'",
"jest-coverage": "jest --coverage",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MinterTeam/minter-js-sdk.git"
},
"keywords": [
"minter",
"blockchain",
"sdk"
],
"author": "MinterTeam (https://github.com/MinterTeam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MinterTeam/minter-js-sdk/issues"
},
"homepage": "https://github.com/MinterTeam/minter-js-sdk#readme",
"dependencies": {
"@babel/runtime": "^7.18.3",
"axios": "^0.27.2",
"big.js": "^6.1.1",
"bn.js": "^5.2.1",
"buffer-es6": "https://[email protected]/shrpne/buffer-es6#fix-internal-is-buffer",
"ethereum-cryptography": "0.1.3",
"ethereumjs-util": "^7.1.4",
"ethjs-util": "^0.1.6",
"lodash-es": "^4.17.21",
"minterjs-tx": "^12.0.1",
"minterjs-util": "^0.24.0",
"minterjs-wallet": "^6.1.2",
"qs": "^6.10.3",
"rlp": "^2",
"secp256k1": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "^28.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"pre-commit": "^1.2.2",
"rollup": "^2.75.5",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-rename": "^1.0.1",
"rollup-plugin-terser": "^7.0.2"
}
}