forked from readmeio/metrics-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "metrics-sdks-monorepo",
"private": true,
"scripts": {
"clean": "npx lerna clean",
"lint": "eslint __tests__ && npm run lint --workspaces",
"lint:docs": "alex .",
"prepare": "husky install",
"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": "NODE_OPTIONS=--experimental-vm-modules npx jest __tests__/integration-metrics.test.js",
"test:integration-webhooks": "NODE_OPTIONS=--experimental-vm-modules npx jest __tests__/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": ">=14"
},
"workspaces": [
"./packages/cloudflare-worker",
"./packages/node",
"./packages/sdk-snippets"
],
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@readme/eslint-config": "^9.0.0",
"alex": "^10.0.0",
"caseless": "^0.12.0",
"eslint": "^8.14.0",
"get-port": "^6.1.2",
"husky": "^7.0.2",
"jest": "^27.5.1",
"prettier": "^2.6.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"transform": {},
"testMatch": [
"<rootDir>/__tests__/**/*.[jt]s?(x)",
"<rootDir>/?(*.)+(spec|test).[jt]s?(x)"
]
},
"type": "module",
"prettier": "@readme/eslint-config/prettier"
}