-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "metalsmith-remark",
"version": "5.0.0",
"description": "Convert markdown to html with remark",
"license": "MIT",
"homepage": "https://github.com/ben-eb/metalsmith-remark",
"author": {
"name": "Ben Briggs",
"email": "[email protected]",
"url": "http://beneb.info"
},
"main": "dist/index.js",
"scripts": {
"pretest": "eslint src",
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
"test": "ava src/__tests__"
},
"files": [
"LICENSE-MIT",
"dist"
],
"dependencies": {
"remark": "^5.0.1",
"remark-html": "^5.0.0"
},
"devDependencies": {
"assert-dir-equal": "^1.0.1",
"ava": "^0.16.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"coveralls": "^2.11.6",
"del-cli": "^0.2.0",
"eslint": "^3.0.0",
"eslint-config-cssnano": "^3.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.1",
"metalsmith": "^2.1.0",
"remark-squeeze-paragraphs": "^3.0.0",
"remark-strip-badges": "^3.0.0"
},
"keywords": [
"markdown",
"remark",
"metalsmith"
],
"eslintConfig": {
"extends": "cssnano"
},
"ava": {
"require": "babel-register"
},
"repository": "ben-eb/metalsmith-remark"
}