-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "metrics-sdks-monorepo",
"private": true,
"scripts": {
"clean": "npx lerna clean",
"lint": "eslint test/ && npm run lint --workspaces",
"lint:docs": "alex .",
"prettier": "prettier --list-different \"./**/**.{js,ts,md}\"",
"prettier:write": "prettier --list-different --write \"./**/**.{js,ts,md}\"",
"publish": "npx lerna publish",
"test": "npm test --workspaces",
"test:integration-metrics": "vitest test/integration-metrics.test.js",
"test:integration-metrics-watch": "vitest run test/integration-metrics.test.js",
"test:integration-webhooks": "vitest test/integration-webhooks.test.js",
"test:integration-webhooks-watch": "vitest run test/integration-webhooks.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/metrics-sdks.git"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"./packages/cloudflare-worker",
"./packages/node",
"./packages/sdk-snippets"
],
"devDependencies": {
"@readme/eslint-config": "^14.0.0",
"alex": "^11.0.0",
"caseless": "^0.12.0",
"eslint": "^8.27.0",
"har-validator": "^5.1.5",
"lerna": "^8.1.3",
"prettier": "^3.0.2",
"vitest": "^0.34.2"
},
"type": "module",
"prettier": "@readme/eslint-config/prettier"
}