-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (41 loc) · 868 Bytes
/
package.json
File metadata and controls
46 lines (41 loc) · 868 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
40
41
42
43
44
45
46
{
"name": "dustmite",
"version": "2.0.0",
"license": "LGPL-3.0",
"description": "Linting for dustjs templates",
"keywords": ["dust", "templates", "lint", "test"],
"author": "Nature Publishing Group",
"contributors": [
"Andrew Walker (http://www.moddular.org/)"
],
"repository": {
"type": "git",
"url": "https://github.com/nature/dustmite.git"
},
"homepage": "https://github.com/nature/dustmite",
"bugs": "https://github.com/nature/dustmite/issues",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"dustjs-linkedin": "~2.7",
"glob": "~5.0",
"yargs": "~3.29"
},
"devDependencies": {
"istanbul": "~0.4",
"jscs": "^2",
"jshint": "^2",
"mocha": "^2",
"mockery": "~1.4",
"proclaim": "^3",
"sinon": "^1"
},
"bin": {
"dustmite": "./bin/cli.js"
},
"main": "./lib/dustmite.js",
"scripts": {
"test": "make test"
}
}