-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.91 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.91 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
125
126
127
{
"name": "weldable",
"version": "5.0.5",
"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:deps": "bash ./scripts/dependencies.sh --doctor -u --doctorTest \"npm run test:deps\"",
"build:docs": "run-s -l test:docs docs:md",
"docs:md": "node ./scripts/readme.docs.js",
"release": "changelog",
"start": "export _WELDABLE_DEV=true; ./bin/cli.js",
"test": "run-s -l test:lint test:spell* test:ci",
"test:ci": "export CI=true; export _WELDABLE_TEST=true; jest --collectCoverage --coverageReporters=\"lcov\" --coverageReporters=\"json-summary\"",
"test:clearCache": "jest --clearCache",
"test:coverage": "run-s test:ci test:coverageSummary",
"test:coverageSummary": "node ./scripts/actions.coverage.js",
"test:deps": "run-s test",
"test:dev": "eslint ./bin ./src; run-s test:spell test:local",
"test:docs": "run-s test:spell 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.28.3",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@tsconfig/create-react-app": "^2.0.6",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/node20": "^20.1.6",
"@tsconfig/react-native": "^3.0.6",
"@tsconfig/recommended": "^1.0.10",
"@tsconfig/strictest": "^2.0.5",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.3",
"dotenv-webpack": "^8.1.1",
"eslint-webpack-plugin": "^5.0.2",
"html-replace-webpack-plugin": "^2.6.0",
"html-webpack-plugin": "^5.6.4",
"less": "^4.4.1",
"less-loader": "^12.3.0",
"mini-css-extract-plugin": "^2.9.4",
"mini-svg-data-uri": "^1.4.4",
"rimraf": "^6.0.1",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.4",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"webpack": "^5.101.3",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@cdcabrera/eslint-config-toolkit": "^0.2.0",
"changelog-light": "^3.0.3",
"cspell": "^9.2.1",
"eslint": "^9.35.0",
"jest": "^30.1.3",
"jsdoc-to-markdown": "^9.1.1",
"lodash": "^4.17.21",
"npm-check-updates": "^18.1.1",
"npm-run-all": "^4.1.5"
}
}