-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "gulp-remarkable",
"version": "2.1.0",
"description": "Gulp plugin for Remarkable - Markdown parser done right. Fast and easy to extend. Supports CommonMark.",
"main": "index.js",
"scripts": {
"lint": "npm install && jshint lib/*.js test/*.js index.js",
"test": "npm run lint && mocha && gulp test",
"test-cov": "npm test && istanbul cover _mocha",
"test-travis": "npm test && istanbul cover _mocha --report lcovonly"
},
"author": {
"name": "John Otander",
"email": "johnotander@gmail.com",
"url": "http://johnotander.com",
"twitter": "https://twitter.com/4lpine"
},
"repository": {
"type": "git",
"url": "git://github.com/johnotander/gulp-remarkable.git"
},
"keywords": [
"gulp",
"gulpplugin",
"commonmark",
"remarkable",
"remarkable-plugin",
"parser",
"markdown",
"md"
],
"dependencies": {
"highlight.js": ">=9.12.0",
"plugin-error": "1.0.1",
"remarkable": "^1.7.1",
"replace-ext": "1.0.0",
"through2": ">=2.0.3"
},
"devDependencies": {
"coveralls": "*",
"gulp": ">=3.9.1",
"gulp-jshint": ">=2.1.0",
"gulp-spawn-mocha": ">=5.0.1",
"istanbul": "*",
"jshint": "*",
"jshint-stylish": ">=2.2.1",
"mocha": ">=5",
"mocha-lcov-reporter": "*",
"vinyl": "2.1.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/johnotander/gulp-remarkable/blob/master/license.md"
}
],
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.4.28"
}
}