-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.8 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.8 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "weldable",
"version": "5.0.12",
"description": "A webpack configuration tool.",
"author": "cdcabrera",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cdcabrera/weldable.git"
},
"bugs": {
"url": "https://github.com/cdcabrera/weldable/issues"
},
"keywords": [
"build",
"config",
"configuration",
"webpack"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"lib/",
"src/*js"
],
"bin": {
"weldable": "bin/cli.js"
},
"type": "commonjs",
"main": "./lib/index.js",
"scripts": {
"build:packages-lib": "node ./scripts/generatePackagesLib.js",
"build:docs": "npm run test:docs && npm run docs:md",
"docs:md": "node ./scripts/readme.docs.js",
"release": "changelog",
"start": "export _WELDABLE_DEV=true; ./bin/cli.js",
"test": "npm run test:lint && npm run test:spell && npm run test:spell-docs && npm run test:ci",
"test:ci": "export CI=true; export _WELDABLE_TEST=true; jest --collectCoverage --coverageReporters=\"lcov\" --coverageReporters=\"json-summary\"",
"test:clearCache": "jest --clearCache",
"test:coverage": "npm run test:ci && npm run test:coverageSummary",
"test:coverageSummary": "node ./scripts/actions.coverage.js",
"test:deps": "npm test",
"test:dev": "eslint ./bin ./src; npm run test:spell && npm run test:local",
"test:docs": "npm run test:spell && npm run test:lint",
"test:integration": "export _WELDABLE_TEST=true; jest --roots=./tests",
"test:integration-dev": "export _WELDABLE_TEST=true; jest --roots=./tests --watchAll",
"test:lint": "eslint ./bin ./src eslint.config.mjs",
"test:local": "export _WELDABLE_TEST=true; jest --watch",
"test:spell-docs": "cspell ./README.md ./DOCS.md ./CONTRIBUTING.md --config ./cspell.config.json",
"test:spell": "cspell './bin/**/*.js' './src/**/*.js' './tests/**/*.js' --config ./cspell.config.json"
},
"jest": {
"roots": [
"src"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 75,
"lines": 80,
"statements": 80
}
},
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/.*/**",
"!src/logger/*"
],
"setupFilesAfterEnv": [
"<rootDir>jest.setupTests.js"
]
},
"dependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@tsconfig/create-react-app": "2.0.8",
"@tsconfig/node18": "18.2.4",
"@tsconfig/node20": "20.1.6",
"@tsconfig/react-native": "3.0.7",
"@tsconfig/recommended": "1.0.11",
"@tsconfig/strictest": "2.0.6",
"babel-loader": "10.0.0",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "7.0.4",
"dotenv": "16.6.1",
"dotenv-expand": "11.0.7",
"dotenv-webpack": "8.1.1",
"eslint-webpack-plugin": "5.0.3",
"html-replace-webpack-plugin": "2.6.0",
"html-webpack-plugin": "5.6.6",
"less": "4.5.1",
"less-loader": "12.3.2",
"mini-css-extract-plugin": "2.10.1",
"mini-svg-data-uri": "1.4.4",
"rimraf": "6.1.3",
"sass": "1.97.3",
"sass-loader": "16.0.7",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.4.0",
"ts-loader": "9.5.4",
"tsconfig-paths-webpack-plugin": "4.2.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"webpack": "5.105.4",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3",
"webpack-merge": "6.0.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@cdcabrera/eslint-config-toolkit": "^0.5.1",
"changelog-light": "^3.0.7",
"cspell": "^9.7.0",
"eslint": "^9.39.4",
"jest": "^30.3.0",
"jsdoc-to-markdown": "^9.1.3",
"lodash": "^4.17.21"
}
}