-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "postcss-import-url",
"version": "0.0.0-dev",
"description": "PostCSS plugin inlines remote files.",
"main": "index.js",
"keywords": [
"postcss",
"css",
"postcss-plugin"
],
"license": "MIT",
"homepage": "https://github.com/unlight/postcss-import-url",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "sh Taskfile build_cp",
"eslint": "node node_modules/eslint/bin/eslint index.js",
"eslint:fix": "npm run eslint -- --fix",
"test": "gulp",
"test:w": "gulp test:w"
},
"dependencies": {
"http-https": "^1.0.0",
"is-url": "^1.2.4",
"lodash.assign": "^4.2.0",
"lodash.trim": "^4.5.1",
"resolve-relative-url": "^1.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"expect": "^29.3.1",
"gulp": "^4.0.2",
"gulp-connect": "^5.7.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"ololog": "^1.1.175",
"postcss": "^8.2.4",
"precise-commits": "^1.0.2",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"tcp-ping": "^0.1.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/postcss-import-url.git"
},
"bugs": {
"url": "https://github.com/unlight/postcss-import-url/issues"
}
}