-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 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
{
"name": "@eik/postcss-plugin",
"version": "5.0.18",
"description": "PostCSS plugin that uses Eik defined import map files to transform bare import specifiers to absolute URLs in @import rules",
"main": "src/plugin.js",
"types": "./types/plugin.d.ts",
"type": "module",
"files": [
"CHANGELOG.md",
"package.json",
"src/",
"types/"
],
"scripts": {
"clean": "rimraf .tap node_modules types",
"test": "tap test/*.js --disable-coverage --allow-empty-coverage",
"test:snapshot": "TAP_SNAPSHOT=1 tap test/*.js --disable-coverage --allow-empty-coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eik-lib/postcss-plugin.git"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"import",
"url"
],
"author": "Finn.no",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/postcss-plugin/issues"
},
"homepage": "https://github.com/eik-lib/postcss-plugin#readme",
"devDependencies": {
"@eik/eslint-config": "1.0.25",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.15",
"@eik/typescript-config": "1.0.0",
"eslint": "9.39.4",
"fastify": "5.8.2",
"npm-run-all2": "8.0.4",
"postcss": "8.5.8",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"rollup": "4.59.0",
"semantic-release": "25.0.3",
"tap": "21.6.2",
"typescript": "5.9.3"
},
"dependencies": {
"@eik/common": "5.1.22",
"css-url-parser": "1.1.4"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"engines": {
"node": ">=20"
}
}