forked from doublejosh/metalsmith-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 864 Bytes
/
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
{
"name": "metalsmith-data",
"description": "A metalsmith plugin to add namespaced global data objects from files.",
"author": "Darin Reid <darin@elcontraption.com>",
"repository": "git@github.com:elcontraption/metalsmith-data",
"version": "0.2.0",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "eslint src/index.js && npm run unit-tests",
"unit-tests": "mocha"
},
"devDependencies": {
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"metalsmith": "^2.1.0",
"mocha": "5.2.0",
"should": "^8.2.1"
},
"dependencies": {
"csv-parse": "^4.0.1",
"js-yaml": "^3.5.4",
"lodash.defaults": "^4.0.1",
"lodash.foreach": "^3.0.3"
}
}