forked from ecadlabs/taquito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.62 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
{
"name": "@taquito/core",
"version": "20.0.1",
"description": "Classes, interfaces, and types shared across Taquito packages",
"keywords": [
"tezos",
"blockchain"
],
"main": "dist/taquito-core.umd.js",
"module": "dist/taquito-core.es6.js",
"typings": "dist/types/taquito-core.d.ts",
"files": [
"dist",
"signature.json"
],
"publishConfig": {
"access": "public"
},
"author": "huianyang <[email protected]>",
"repository": {
"type": "git",
"url": ""
},
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"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": {
"json-stringify-safe": "^5.0.1"
},
"devDependencies": {
"@types/json-stringify-safe": "^5.0.3",
"rollup": "^4.19.1",
"rollup-plugin-typescript2": "^0.36.0"
}
}