-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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": "reveal-compiler-explorer-monorepo",
"workspaces": [
"packages/*"
],
"version": "3.2.1",
"main": "index.js",
"repository": "https://github.com/dvirtz/reveal-compiler-explorer",
"author": {
"name": "Dvir Yitzchaki",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "yarn build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "yarn workspaces foreach -Apt run build",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.12",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"pinst": "^3.0.0",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.8",
"semantic-release-yarn": "^3.0.2",
"semver": "^7.6.0",
"tempy": "^3.1.0",
"test-console": "^2.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"private": true,
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
200
],
"footer-max-line-length": [
0,
"always"
]
}
},
"packageManager": "[email protected]"
}