forked from readmeio/metrics-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.54 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
{
"name": "metrics-sdks-monorepo",
"private": true,
"scripts": {
"clean": "npx lerna@6 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@6 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",
"version": "npx conventional-changelog-cli --pkg lerna.json -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/metrics-sdks.git"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"./packages/cloudflare-worker",
"./packages/node",
"./packages/sdk-snippets"
],
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@readme/eslint-config": "^12.1.0",
"alex": "^11.0.0",
"caseless": "^0.12.0",
"eslint": "^8.27.0",
"form-data-encoder": "^2.1.0",
"formdata-node": "^5.0.0",
"har-validator": "^5.1.5",
"isomorphic-fetch": "^3.0.0",
"prettier": "^3.0.2",
"vitest": "^0.34.2"
},
"type": "module",
"prettier": "@readme/eslint-config/prettier"
}