This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "webmangler-monorepo",
"description": "A mangler for websites",
"license": "MIT",
"version": "0.1.0-alpha",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ericcornelissen/webmangler"
},
"author": {
"name": "Eric Cornelissen",
"email": "[email protected]",
"url": "https://ericcornelissen.dev/"
},
"scripts": {
"clean": "node scripts/clean.js",
"coverage": "node scripts/test.js --coverage",
"format": "node scripts/lint.js --format",
"license-check": "licensee --errors-only",
"lint": "node scripts/lint.js",
"postinstall": "husky install scripts/hooks",
"test": "node scripts/test.js",
"test:mutation": "node scripts/test.js --mutation",
"test:performance": "node scripts/test.js --performance",
"test:watch": "node scripts/test.js --watch"
},
"devDependencies": {
"@commitlint/config-conventional": "18.4.3",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@stryker-mutator/core": "7.3.0",
"@stryker-mutator/mocha-runner": "7.3.0",
"@stryker-mutator/typescript-checker": "7.3.0",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.10.0",
"@types/sinon": "17.0.2",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
"chai": "4.3.10",
"commitlint": "18.4.3",
"eslint": "8.54.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-regexp": "2.1.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-yml": "1.10.0",
"fast-check": "3.14.0",
"git-changed-files": "1.0.0",
"husky": "8.0.3",
"licensee": "10.0.0",
"markdownlint-cli": "0.37.0",
"micromatch": "4.0.5",
"mocha": "10.2.0",
"nyc": "15.1.0",
"sinon": "17.0.1",
"sinon-chai": "3.7.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.3.2"
},
"workspaces": [
"packages/benchmarking",
"packages/cli",
"packages/core",
"packages/language-css",
"packages/language-html",
"packages/language-js",
"packages/language-utils",
"packages/mangler-css-classes",
"packages/mangler-css-variables",
"packages/mangler-html-attributes",
"packages/mangler-html-ids",
"packages/mangler-utils",
"packages/testing",
"packages/types"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.1.2"
}
}