-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
105 lines (105 loc) · 2.65 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": "@taquito/utils",
"version": "20.1.0",
"description": "converts michelson data and types into convenient JS/TS objects",
"keywords": [
"tezos",
"blockchain",
"michelson",
"smart-contract"
],
"main": "dist/taquito-utils.umd.js",
"module": "dist/taquito-utils.es6.js",
"typings": "dist/types/taquito-utils.d.ts",
"files": [
"dist",
"signature.json"
],
"publishConfig": {
"access": "public"
},
"author": "Simon Boissonneault-Robert <[email protected]>",
"repository": {
"type": "git",
"url": ""
},
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint --ext .js,.ts .",
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"version-stamp": "node ../taquito/version-stamping.js",
"build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs",
"start": "rollup -c rollup.config.ts --bundleConfigAsCjs -w",
"test": "jest"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
},
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.3",
"@taquito/core": "^20.1.0",
"@types/bs58check": "^2.1.2",
"bignumber.js": "^9.1.2",
"blakejs": "^1.2.1",
"bs58check": "^3.0.1",
"buffer": "^6.0.3",
"elliptic": "^6.6.0",
"typedarray-to-buffer": "^4.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"lint-staged": "^15.2.7",
"lodash.camelcase": "^4.3.0",
"prettier": "^3.3.3",
"prompt": "^1.3.0",
"replace-in-file": "^8.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"typescript": "~5.5.4"
},
"gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e"
}