-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.39 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
{
"name": "webpack-sources",
"version": "3.5.0",
"description": "Source code handling classes for webpack",
"keywords": ["webpack", "source-map"],
"homepage": "https://github.com/webpack/webpack-sources#readme",
"bugs": {
"url": "https://github.com/webpack/webpack-sources/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack/webpack-sources.git"
},
"license": "MIT",
"author": "Tobias Koppers @sokra",
"main": "lib/index.js",
"types": "types.d.ts",
"files": ["lib/", "types.d.ts"],
"scripts": {
"lint": "npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special",
"lint:code": "eslint --cache .",
"lint:special": "node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types",
"lint:types": "tsc",
"lint:types-test": "tsc -p tsconfig.types.test.json",
"fmt": "npm run fmt:base -- --loglevel warn --write",
"fmt:check": "npm run fmt:base -- --check",
"fmt:base": "prettier --cache --ignore-unknown .",
"fix": "npm run fix:code && npm run fix:special",
"fix:code": "npm run lint:code -- --fix",
"fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write",
"pretest": "npm run lint",
"test": "jest",
"test:coverage": "jest --coverage",
"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 cases",
"benchmark:memory": "node --expose-gc --max-old-space-size=4096 ./benchmark/run.mjs memory",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@changesets/get-github-info": "^0.8.0",
"@codspeed/core": "^5.5.0",
"@types/jest": "^30.0.0",
"eslint": "^9.28.0",
"eslint-config-webpack": "^4.0.8",
"jest": "^30.4.2",
"prettier": "^3.5.3",
"prettier-2": "npm:prettier@^2",
"source-map": "^0.7.3",
"sourcemap-validator": "^2.1.0",
"tinybench": "^6.0.0",
"tooling": "webpack/tooling#v1.26.4",
"typescript": "^6.0.2",
"webpack": "^5.107.2"
},
"engines": {
"node": ">=10.13.0"
}
}