-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 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
{
"name": "broccoli-markdown-resolver",
"version": "0.0.1",
"description": "Broccoli plugin to resolve markdown files to a tree with content and frontmatter parsing",
"main": "index.js",
"author": {
"name": "Will Viles",
"email": "will@vil.es",
"url": "willviles.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/willviles/broccoli-markdown-resolver.git"
},
"files": [
"index.js"
],
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"scripts": {
"test": "mocha --require babel-core/register tests/",
"test:debug": "mocha debug --require babel-core/register tests/"
},
"babel": {
"presets": [
"env"
]
},
"keywords": [
"broccoli-plugin",
"javascript",
"markdown",
"md",
"resolver",
"frontmatter"
],
"dependencies": {
"broccoli-plugin": "^1.3.0",
"front-matter": "^2.2.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.6.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^4.0.1"
}
}