-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "@js-widgets/webpack-cli",
"version": "1.1.4",
"description": "Builds the registry and compiles the widgets using webpack.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.20.5"
},
"main": "build/src/index.js",
"bin": {
"js-widgets-webpack-cli": "build/src/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:ci": "yarn test --watchAll=false --coverage",
"lint": "eslint .",
"lint:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|md)\" && yarn lint --fix",
"lint:ci": "yarn lint -o reports/eslint/issues.json -f json",
"lint-staged": "lint-staged"
},
"author": {
"name": "Mateu Aguiló Bosch",
"email": "[email protected]"
},
"devDependencies": {
"@babel/preset-typescript": "7.26.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@formatjs/cli": "5.1.13",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/debug": "4.1.12",
"@types/glob": "8.1.0",
"@types/jest": "27.5.2",
"@types/node": "18.19.64",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "27.5.1",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1",
"clean-webpack-plugin": "^4.0.0",
"commander": "^10.0.1",
"copy-webpack-plugin": "^11.0.0",
"glob": "^8.1.0",
"mini-css-extract-plugin": "^2.9.2",
"semver": "^7.6.3",
"webpack": "^5.96.1"
}
}