-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.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
{
"author": {
"name": "Patrik Simek",
"url": "https://www.integromat.com"
},
"name": "@integromat/proto",
"description": "Integromat Proto-Classes",
"keywords": [
"integromat",
"imt"
],
"version": "2.5.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./global": "./dist/global.js"
},
"files": [
"/dist",
"/src"
],
"repository": {
"type": "git",
"url": "https://github.com/integromat/imt-proto"
},
"license": "MIT",
"dependencies": {
"@types/request": "^2.48.12"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=16.19.0"
},
"scripts": {
"build": "tsc --build tsconfig.json --clean && tsc --build tsconfig.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --coverage",
"format": "prettier --write .",
"format:check": "prettier --check ."
}
}