-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 KB
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
{
"name": "iframe-coordinator-monorepo",
"version": "6.5.0",
"workspaces": [
"./packages/iframe-coordinator",
"./packages/iframe-coordinator-cli",
"./apps/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"start-client-example": "npm run start --workspace=ifc-example-client",
"test": "npm test --workspaces --if-present",
"commit": "git-cz",
"lint": "commitlint --from c6ce5b2c3ad19bf49b8fb340dda4cb526cb39708",
"prettier": "prettier '**/*' --write --ignore-unknown --log-level silent",
"sync-versions": "./scripts/sync-versions.mjs",
"release": "commit-and-tag-version",
"release.dry": "commit-and-tag-version --dry-run",
"publish.iframe-coordinator": "npm publish --workspace=iframe-coordinator",
"publish.iframe-coordinator-cli": "npm publish --workspace=iframe-coordinator-cli",
"doc": "npm run doc --workspace=iframe-coordinator",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commit-and-tag-version": "^12.6.1",
"commitizen": "^4.3.1",
"git-cz": "^4.9.0",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"typescript": "^5.5.4"
},
"overrides": {
"jasmine-core": "^5.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"volta": {
"node": "20.9.0",
"npm": "10.1.0"
}
}