-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "iframe-coordinator-monorepo",
"version": "6.2.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": "standard-version",
"release.dry": "standard-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.4.1",
"@commitlint/config-conventional": "^19.4.1",
"commitizen": "^4.3.0",
"git-cz": "^4.9.0",
"glob": "^11.0.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "^4.9.5"
},
"overrides": {
"jasmine-core": "^5.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"volta": {
"node": "20.9.0",
"npm": "10.1.0"
}
}