-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
68
{
"name": "markdown-it-plugin-data-src",
"version": "0.0.0-development",
"description": "Replaces <image> 'src' attributes with 'data-src' for use with Lozad.js to lazy-load all images by default.",
"homepage": "https://github.com/seanwlawrence/markdown-it-plugin-data-src#readme",
"bugs": {
"url": "https://github.com/seanwlawrence/markdown-it-plugin-data-src/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/seanWLawrence/markdown-it-plugin-data-src.git"
},
"main": "lib/index.js",
"scripts": {
"test": "make test",
"lint": "make lint",
"build": "make build",
"commit": "make commit",
"ci": "make ci",
"publish": "make publish",
"view-docs": "make view-docs",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"lozad",
"lazy loading"
],
"author": "Sean W. Lawrence (https://swl.netlify.com)",
"license": "MIT",
"dependencies": {
"semantic-release": "^15.9.11"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.2",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-flow": "^7.0.0-rc.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-jest": "^21.21.0",
"flow-bin": "^0.79.1",
"jest": "^23.5.0",
"jsdoc-babel": "^0.4.0",
"markdown-it": "^8.4.2",
"prettier": "^1.14.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"travis-deploy-once": "^5.0.4",
"semantic-release": "^15.9.11"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}