-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "locker-multipack",
"description": "JavaScript Open Source Library for Locker packages",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples",
"scripts"
],
"scripts": {
"clean": "lerna run clean --stream",
"build": "lerna run build --stream",
"build:dev": "lerna run build:dev --stream",
"lint": "eslint packages test",
"prepare": "husky install && yarn build",
"start": "http-server ./examples",
"coverage": "yarn coverage:jest && yarn coverage:karma && yarn coverage:report",
"coverage:jest": "yarn jest --coverage",
"coverage:karma": "NODE_OPTIONS=\"$NODE_OPTIONS --max_old_space_size=8192\" karma start karma.config.js --single-run --browsers ChromeHeadlessNoSandbox --coverage",
"coverage:report": "node scripts/nyc/report.mjs",
"test": "yarn jest",
"jest": "jest --no-cache --runInBand --silent --config jest.config.js",
"jest:debug": "node --inspect-brk node_modules/.bin/jest --no-cache --runInBand --config jest.config.js",
"release": "lerna version patch --exact --no-push --yes",
"release:beta": "lerna version prerelease --preid beta --exact --no-push --yes",
"release:major": "lerna version minor --exact --no-push --yes",
"release:version": "lerna version $VERSION --exact --no-push --yes",
"push": "git push --follow-tags",
"npm:login": "npm login --registry https://registry.npmjs.org/",
"npm:publish": "lerna publish from-package --ignore-scripts --yes --registry https://registry.npmjs.org/",
"version": "yarn build"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-typescript": "7.22.5",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.4",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-replace": "5.0.2",
"@types/eslint": "8.44.2",
"@types/jest": "29.5.3",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"escape-string-regexp": "4.0.0",
"eslint": "8.47.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.1.1",
"globby": "11.1.0",
"http-server": "14.1.1",
"husky": "8.0.3",
"istanbul": "0.4.5",
"istanbul-api": "3.0.0",
"istanbul-merge": "2.0.0",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-firefox-launcher": "2.1.2",
"karma-jasmine": "5.1.0",
"karma-rollup-preprocessor": "7.0.8",
"karma-safari-launcher": "1.0.0",
"lerna": "7.1.5",
"lint-staged": "14.0.0",
"meow": "9.0.0",
"merge-options": "3.0.4",
"nyc": "15.1.0",
"prettier": "2.8.8",
"puppeteer": "21.0.3",
"rimraf": "5.0.1",
"rollup": "3.28.0",
"rollup-plugin-istanbul": "4.0.0",
"rollup-plugin-ts": "3.4.4",
"trash": "7.2.0",
"typescript": "5.1.6"
},
"engines": {
"node": "^16.19.1",
"yarn": "^1.22.11"
},
"volta": {
"node": "16.19.1",
"yarn": "1.22.11"
},
"engineStrict": true,
"lint-staged": {
"packages/**/*.{js,ts}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "yarn commitlint --edit $1"
}
},
"dependencies": {}
}