-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.88 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
{
"name": "@upfluence/w-conf",
"version": "0.5.0",
"description": "Shared configuration for web projects",
"author": "Upfluence <dev@upfluence.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/upfluence/w-conf.git"
},
"keywords": [
"upfluence",
"configuration",
"prettier",
"eslint",
"eslintconfig",
"shared-config"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"web-baseline:check": "node scripts/check-web-baseline-coverage.mjs",
"web-baseline:check:csv": "node scripts/check-web-baseline-coverage.mjs --csv",
"web-baseline:check:target": "node scripts/check-web-baseline-coverage.mjs --check-target-only",
"web-baseline:test": "node tests/web-baseline/coverage-test.mjs",
"format": "prettier --write ./{src,tests,scripts}/**/*",
"format:check": "prettier --check --ignore-unknown ./{src,tests,scripts}/**/*"
},
"devDependencies": {
"@google-analytics/data": "^7.0.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"baseline-browser-mapping": "^2.11.13",
"browserslist": "^4.28.8",
"eslint": "^10.5.0",
"prettier": "^3.6.2",
"typescript": "^6.0.3"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-ember": "^13.3.2",
"eslint-plugin-n": "^18.1.0",
"eslint-plugin-qunit": "^8.2.6",
"globals": "^17.7.0",
"typescript-eslint": "^8.62.0"
},
"peerDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"eslint": ">=10.5.0",
"prettier": "^3.6.2"
},
"type": "module",
"files": [
"src"
],
"exports": {
"./prettier": "./src/prettier/index.mjs",
"./eslint": "./src/eslint/index.mjs",
"./browsers/web-baseline.json": "./src/browsers/web-baseline.json"
}
}