-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (60 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (60 loc) · 1.65 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
{
"name": "@blocker/markdown-it-image-proxy",
"version": "0.1.0",
"description": "Auto prepend URL on images.",
"main": "dist/index.cjs.js",
"browser": "dist/index.umd.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.min.js",
"jsdelivr": "dist/index.umd.min.js",
"files": [
"dist/*",
"lib/*",
"README.md"
],
"repository": "https://github.com/blocker-solutions/markdown-it-image-proxy",
"homepage": "https://github.com/blocker-solutions/markdown-it-image-proxy",
"author": "Diego Hernandes <diego@hernandev.com>",
"license": "MIT",
"private": false,
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"image",
"proxy"
],
"engines": {
"node": ">= 8"
},
"scripts": {
"build": "yarn run build:all",
"build:all": "yarn run build:pretty && yarn run build:min",
"build:pretty": "cross-env NODE_ENV=development rollup -c",
"build:min": "cross-env NODE_ENV=production rollup -c",
"prepare": "yarn build"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.6",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.0.1",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"lodash": "^4.17.10"
},
"dependencies": {
},
"publishConfig": {
"access": "public"
}
}