-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "@eik/postcss-plugin",
"version": "3.0.14",
"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",
"files": [
"CHANGELOG.md",
"package.json",
"src/"
],
"scripts": {
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eik-lib/postcss-import-map.git"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"import",
"url"
],
"author": "Finn.no",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/postcss-import-map/issues"
},
"homepage": "https://github.com/eik-lib/postcss-import-map#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "11.0.3",
"@semantic-release/release-notes-generator": "12.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-config-prettier": "9.1.0",
"fastify": "4.26.2",
"postcss": "8.4.38",
"rollup": "4.14.2",
"semantic-release": "23.0.8",
"tap": "18.7.2"
},
"dependencies": {
"@eik/common-config-loader": "4.0.0-next.12",
"css-url-parser": "1.1.3",
"node-fetch": "2.7.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}