forked from TradeTrust/tradetrust-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "@tradetrust-tt/tradetrust-utils",
"version": "0.1.0",
"description": "",
"types": "./dist/types/index.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/types/index.d.ts"
],
"constants/*": [
"./dist/types/constants/*.d.ts"
]
}
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./constants/*": {
"require": "./dist/cjs/constants/*.js",
"import": "./dist/esm/constants/*.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --project ./tsconfig.prod.json",
"build:esm": "tsc --module es2015 --outDir dist/esm --project ./tsconfig.prod.json",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types --project ./tsconfig.prod.json",
"clean": "rm -rf dist/",
"test:ci": "jest --runInBand",
"test": "NODE_OPTIONS=--max-old-space-size=2048 jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:type": "npx --no-install tsc --noEmit --sourceMap false",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "semantic-release"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@tradetrust-tt/tt-verify": "^8.9.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@commitlint/prompt": "^18.6.1",
"@types/gtag.js": "0.0.19",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.2.5",
"semantic-release": "^21.1.2",
"ts-jest": "^29.1.2",
"dotenv": "^16.4.5",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/TradeTrust/tradetrust-utils.git"
},
"engines": {
"node": "18.x"
}
}