-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "markdown-it-picture",
"version": "0.0.1",
"description": "MarkdownIt Plugin for html picture element with srcset",
"keywords": [
"markdown-it",
"markdown-it-plugin"
],
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"build-dev": "cross-env BABEL_ENV=development babel src --out-dir lib",
"dev": "watch 'npm run build-dev' src",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanlef/markdown-it-picture.git"
},
"author": "LEF",
"license": "MIT",
"bugs": {
"url": "https://github.com/johanlef/markdown-it-picture/issues"
},
"homepage": "https://github.com/johanlef/markdown-it-picture",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"rimraf": "^2.6.3",
"watch": "^1.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.0"
}
}