@taquito/contracts-library 10.2.0-beta-RC.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "@taquito/contracts-library",
3
+ "version": "10.2.0-beta-RC.0",
4
+ "description": "Can be used as an extension on the TezosToolkit to provide contracts data",
5
+ "keywords": [
6
+ "tezos"
7
+ ],
8
+ "main": "dist/taquito-contracts-library.umd.js",
9
+ "module": "dist/taquito-contracts-library.es5.js",
10
+ "typings": "dist/types/taquito-contracts-library.d.ts",
11
+ "files": [
12
+ "signature.json",
13
+ "dist"
14
+ ],
15
+ "author": "Roxane Letourneau <roxane@ecadlabs.com>",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": ""
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "license": "MIT",
24
+ "engines": {
25
+ "node": ">=6.0.0"
26
+ },
27
+ "scripts": {
28
+ "test": "jest --coverage",
29
+ "test:watch": "jest --coverage --watch",
30
+ "test:prod": "npm run lint && npm run test -- --no-cache",
31
+ "lint": "eslint --ext .js,.ts .",
32
+ "precommit": "lint-staged",
33
+ "prebuild": "rimraf dist",
34
+ "version-stamp": "node ../taquito/version-stamping.js",
35
+ "build": "npm run version-stamp && tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts ",
36
+ "start": "npm run version-stamp && rollup -c rollup.config.ts -w"
37
+ },
38
+ "lint-staged": {
39
+ "{src,test}/**/*.ts": [
40
+ "prettier --write",
41
+ "tslint --fix",
42
+ "git add"
43
+ ]
44
+ },
45
+ "jest": {
46
+ "transform": {
47
+ ".(ts|tsx)": "ts-jest"
48
+ },
49
+ "testEnvironment": "node",
50
+ "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
51
+ "moduleFileExtensions": [
52
+ "ts",
53
+ "tsx",
54
+ "js"
55
+ ],
56
+ "moduleNameMapper": {
57
+ "^@taquito/taquito$": "<rootDir>/../taquito/src/taquito.ts",
58
+ "^@taquito/rpc$": "<rootDir>/../taquito-rpc/src/taquito-rpc.ts",
59
+ "^@taquito/taquito-utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts",
60
+ "^@taquito/taquito-http-utils$": "<rootDir>/../taquito-http-utils/src/taquito-http-utils.ts"
61
+ },
62
+ "coveragePathIgnorePatterns": [
63
+ "/node_modules/",
64
+ "/test/"
65
+ ],
66
+ "collectCoverageFrom": [
67
+ "src/**/*.{js,ts}"
68
+ ]
69
+ },
70
+ "dependencies": {
71
+ "@taquito/http-utils": "^10.2.0-beta-RC.0",
72
+ "@taquito/rpc": "^10.2.0-beta-RC.0",
73
+ "@taquito/taquito": "^10.2.0-beta-RC.0",
74
+ "@taquito/utils": "^10.2.0-beta-RC.0",
75
+ "bignumber.js": "^9.0.1"
76
+ },
77
+ "devDependencies": {
78
+ "@types/jest": "^26.0.23",
79
+ "@types/node": "^15.12.2",
80
+ "@types/superagent": "^4.1.11",
81
+ "@typescript-eslint/eslint-plugin": "^4.28.1",
82
+ "@typescript-eslint/parser": "^4.28.1",
83
+ "colors": "^1.4.0",
84
+ "coveralls": "^3.1.0",
85
+ "cross-env": "^7.0.3",
86
+ "eslint": "^7.29.0",
87
+ "jest": "^26.6.3",
88
+ "jest-config": "^26.6.3",
89
+ "lint-staged": "^11.0.0",
90
+ "lodash.camelcase": "^4.3.0",
91
+ "prettier": "^2.3.1",
92
+ "prompt": "^1.1.0",
93
+ "replace-in-file": "^6.2.0",
94
+ "rimraf": "^3.0.2",
95
+ "rollup": "^2.51.1",
96
+ "rollup-plugin-json": "^4.0.0",
97
+ "rollup-plugin-sourcemaps": "^0.6.3",
98
+ "rollup-plugin-typescript2": "^0.30.0",
99
+ "shelljs": "^0.8.4",
100
+ "ts-jest": "^26.4.4",
101
+ "ts-node": "^10.0.0",
102
+ "tslint-config-prettier": "^1.18.0",
103
+ "tslint-config-standard": "^9.0.0",
104
+ "typescript": "^4.1.5"
105
+ },
106
+ "gitHead": "76fae742b8c5411468da88ad5f39ac222a8bc254"
107
+ }