source: frontend/node_modules/webpack-sources/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[9af201e]1{
2 "name": "webpack-sources",
3 "version": "3.4.1",
4 "description": "Source code handling classes for webpack",
5 "keywords": [
6 "webpack",
7 "source-map"
8 ],
9 "homepage": "https://github.com/webpack/webpack-sources#readme",
10 "bugs": {
11 "url": "https://github.com/webpack/webpack-sources/issues"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/webpack/webpack-sources.git"
16 },
17 "license": "MIT",
18 "author": "Tobias Koppers @sokra",
19 "main": "lib/index.js",
20 "types": "types.d.ts",
21 "files": [
22 "lib/",
23 "types.d.ts"
24 ],
25 "scripts": {
26 "lint": "npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special",
27 "lint:code": "eslint --cache .",
28 "lint:special": "node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types",
29 "lint:types": "tsc",
30 "lint:types-test": "tsc -p tsconfig.types.test.json",
31 "fmt": "npm run fmt:base -- --loglevel warn --write",
32 "fmt:check": "npm run fmt:base -- --check",
33 "fmt:base": "prettier --cache --ignore-unknown .",
34 "fix": "npm run fix:code && npm run fix:special",
35 "fix:code": "npm run lint:code -- --fix",
36 "fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write",
37 "pretest": "npm run lint",
38 "test": "jest",
39 "test:coverage": "jest --coverage",
40 "benchmark": "node --max-old-space-size=4096 --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./benchmark/run.mjs",
41 "version": "changeset version",
42 "release": "changeset publish"
43 },
44 "devDependencies": {
45 "@changesets/cli": "^2.30.0",
46 "@changesets/get-github-info": "^0.8.0",
47 "@codspeed/core": "^5.2.0",
48 "@types/jest": "^30.0.0",
49 "eslint": "^9.28.0",
50 "eslint-config-webpack": "^4.0.8",
51 "jest": "^30.3.0",
52 "prettier": "^3.5.3",
53 "prettier-2": "npm:prettier@^2",
54 "source-map": "^0.7.3",
55 "sourcemap-validator": "^2.1.0",
56 "tinybench": "^6.0.0",
57 "tooling": "webpack/tooling#v1.26.1",
58 "typescript": "^6.0.2",
59 "webpack": "^5.99.9"
60 },
61 "engines": {
62 "node": ">=10.13.0"
63 }
64}
Note: See TracBrowser for help on using the repository browser.