package.json
5.14 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"_args": [
[
{
"raw": "postcss-normalize-url@^3.0.7",
"scope": null,
"escapedName": "postcss-normalize-url",
"name": "postcss-normalize-url",
"rawSpec": "^3.0.7",
"spec": ">=3.0.7 <4.0.0",
"type": "range"
},
"D:\\100-Projects\\100-AIAHTML5\\400-SOURCECODE\\AIAHTML5.Admin\\node_modules\\cssnano"
]
],
"_from": "postcss-normalize-url@>=3.0.7 <4.0.0",
"_id": "postcss-normalize-url@3.0.8",
"_inCache": true,
"_location": "/postcss-normalize-url",
"_nodeVersion": "6.9.1",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/postcss-normalize-url-3.0.8.tgz_1483135544804_0.829619016032666"
},
"_npmUser": {
"name": "beneb",
"email": "beneb.info@gmail.com"
},
"_npmVersion": "3.10.8",
"_phantomChildren": {},
"_requested": {
"raw": "postcss-normalize-url@^3.0.7",
"scope": null,
"escapedName": "postcss-normalize-url",
"name": "postcss-normalize-url",
"rawSpec": "^3.0.7",
"spec": ">=3.0.7 <4.0.0",
"type": "range"
},
"_requiredBy": [
"/cssnano"
],
"_resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz",
"_shasum": "108f74b3f2fcdaf891a2ffa3ea4592279fc78222",
"_shrinkwrap": null,
"_spec": "postcss-normalize-url@^3.0.7",
"_where": "D:\\100-Projects\\100-AIAHTML5\\400-SOURCECODE\\AIAHTML5.Admin\\node_modules\\cssnano",
"author": {
"name": "Ben Briggs",
"email": "beneb.info@gmail.com",
"url": "http://beneb.info"
},
"ava": {
"require": "babel-register"
},
"bugs": {
"url": "https://github.com/ben-eb/postcss-normalize-url/issues"
},
"dependencies": {
"is-absolute-url": "^2.0.0",
"normalize-url": "^1.4.0",
"postcss": "^5.0.14",
"postcss-value-parser": "^3.2.3"
},
"description": "Normalize URLs with PostCSS",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.9.0",
"del-cli": "^0.2.0",
"eslint": "^3.0.0",
"eslint-config-cssnano": "^3.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.1"
},
"directories": {},
"dist": {
"shasum": "108f74b3f2fcdaf891a2ffa3ea4592279fc78222",
"tarball": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz"
},
"eslintConfig": {
"extends": "cssnano"
},
"files": [
"dist",
"LICENSE-MIT"
],
"gitHead": "e4e005893bc5c19b151c9f35c0d2c25112154045",
"homepage": "https://github.com/ben-eb/postcss-normalize-url",
"keywords": [
"css",
"normalize",
"optimise",
"optimisation",
"postcss",
"postcss-plugin",
"url"
],
"license": "MIT",
"main": "dist/index.js",
"maintainers": [
{
"name": "beneb",
"email": "beneb.info@gmail.com"
},
{
"name": "trysound",
"email": "trysound@yandex.ru"
}
],
"name": "postcss-normalize-url",
"optionalDependencies": {},
"readme": "# [postcss][postcss]-normalize-url [][ci] [][npm] [][deps]\n\n> [Normalize URLs](https://github.com/sindresorhus/normalize-url) with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-normalize-url) do:\n\n```\nnpm install postcss-normalize-url --save\n```\n\n## Example\n\n### Input\n\n```css\nh1 {\n background: url(\"http://site.com:80/image.jpg\")\n}\n```\n\n### Output\n\n```css\nh1 {\n background: url(http://site.com/image.jpg)\n}\n```\n\nNote that this module will also try to normalize relative URLs, and is capable\nof stripping unnecessary quotes. For more examples, see the [tests](test.js).\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## API\n\n### normalize([options])\n\nPlease see the [normalize-url documentation][docs]. By default,\n`normalizeProtocol` & `stripFragment` are set to `false`; `stripWWW` to `true`.\n\n## Contributing\n\nPull requests are welcome. If you add functionality, then please add unit tests\nto cover it.\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[docs]: https://github.com/sindresorhus/normalize-url#options\n\n[ci]: https://travis-ci.org/ben-eb/postcss-normalize-url\n[deps]: https://gemnasium.com/ben-eb/postcss-normalize-url\n[npm]: http://badge.fury.io/js/postcss-normalize-url\n[postcss]: https://github.com/postcss/postcss\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/ben-eb/postcss-normalize-url.git"
},
"scripts": {
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
"pretest": "eslint src",
"test": "ava src/__tests__",
"test-012": "ava src/__tests__"
},
"version": "3.0.8"
}