-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1010 Bytes
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
{
"name": "metalsmith-template-data",
"version": "0.0.1",
"description": "A Metalsmith plugin that imports template data from Javascript files",
"main": "index.js",
"scripts": {
"pretest": "grunt jslint",
"test": "mocha ./test/*",
"coverage": "istanbul cover _mocha -- -R spec ./test --recursive",
"coveralls": "npm run-script coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/shebson/metalsmith-template-data.git"
},
"bugs": {
"url": "https://github.com/shebson/metalsmith-template-data/issues"
},
"dependencies": {
"underscore": "~1.8.2"
},
"devDependencies": {
"clone": "~1.0.1",
"should": "~5.2.0",
"mocha": "~2.2.1",
"grunt": "~0.4.5",
"grunt-jslint": "~1.1.12",
"grunt-cli": "~0.1.13",
"coveralls": "~2.11.2",
"istanbul": "~0.3.8"
},
"keywords": [
"Metalsmith",
"plugin",
"template"
],
"author": "Stephen Hebson",
"license": "MIT"
}