-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "integreat",
"version": "1.5.10",
"description": "Node.js integration layer",
"author": "Kjell-Morten Bratsberg Thorsen <[email protected]> (https://integreat.io/)",
"license": "ISC",
"keywords": [
"integreat",
"integration",
"data",
"api"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "npm run build && c8 --reporter=text-summary ava --config ./ava-dist.config.cjs",
"test:watch": "npm run dev",
"dev": "ava --watch",
"build": "tsc",
"prepare": "npm run build",
"coverage": "c8 report",
"lint": "eslint --ext .ts src",
"verify": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/integreat.git"
},
"bugs": {
"url": "https://github.com/integreat-io/integreat/issues"
},
"homepage": "https://github.com/integreat-io/integreat#readme",
"engines": {
"node": ">= 18"
},
"dependencies": {
"ajv": "^8.16.0",
"cron-parser": "^4.9.0",
"debug": "^4.3.5",
"deepmerge-ts": "^5.1.0",
"map-any": "^1.0.0",
"map-transform": "^1.5.1",
"ms": "^2.1.3",
"nanoid": "^5.0.7",
"p-limit": "^5.0.0",
"p-pipe": "^4.0.0",
"p-progress": "^1.0.0",
"rfdc": "^1.4.1"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^6.0.2",
"@types/debug": "^4.1.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.9",
"@types/sinon": "^17.0.3",
"integreat-adapter-json": "^1.0.1",
"integreat-adapter-uri": "^1.0.0",
"integreat-transformers": "^1.0.5",
"integreat-transporter-http": "^1.3.0",
"nock": "^13.5.4",
"sinon": "^17.0.2"
}
}