UNPKG

1.27 kBJSONView Raw
1{
2 "name": "rollup-plugin-url",
3 "version": "1.2.0",
4 "description": "Inline import files as data-URIs, or copy them to output",
5 "main": "dist/index.js",
6 "jsnext:main": "src/index.js",
7 "files": [
8 "src",
9 "dist",
10 "README.md"
11 ],
12 "devDependencies": {
13 "babel-preset-es2015": "^6.5.0",
14 "babel-register": "^6.4.3",
15 "mocha": "^2.4.5",
16 "rimraf": "^2.5.1",
17 "rollup": "^0.32.4",
18 "rollup-plugin-babel": "^2.3.9"
19 },
20 "scripts": {
21 "test": "mocha --compilers js:babel-register",
22 "pretest": "npm run build",
23 "build": "rollup -c",
24 "prebuild": "rimraf dist/*",
25 "prepublish": "npm test"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/Swatinem/rollup-plugin-url.git"
30 },
31 "keywords": [
32 "rollup-plugin",
33 "url",
34 "inline",
35 "copy"
36 ],
37 "author": "Arpad Borsos <arpad.borsos@googlemail.com>",
38 "maintainers": [
39 "Poluektov Dmitriy <dmitry.a@kr.digital>"
40 ],
41 "license": "LGPL-3.0",
42 "bugs": {
43 "url": "https://github.com/Swatinem/rollup-plugin-url/issues"
44 },
45 "homepage": "https://github.com/Swatinem/rollup-plugin-url#readme",
46 "dependencies": {
47 "mime": "^1.3.4",
48 "rollup-pluginutils": "^2.0.1"
49 },
50 "peerDependencies": {
51 "rollup": ">=0.32.4"
52 }
53}