-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 909 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "swiffer",
"main": "Swiffer.js",
"description": "Command line syntax checker for Dust.",
"version": "0.0.8",
"author": "Steven Foote <sfoote@linkedin.com>",
"keywords": [
"Dust",
"syntax",
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/smfoote/Swiffer.js.git"
},
"bugs": {
"url": "https://github.com/smfoote/Swiffer.js/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.8.0"
},
"bin": {
"swiffer": "./bin/swiffer"
},
"dependencies": {
"dustjs-linkedin": "latest",
"underscore": "1.5.1",
"cli": "0.4.x"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^2.5.3",
"sinon": "^1.17.5"
},
"scripts": {
"test": "mocha test/unit/ --recursive --reporter nyan"
},
"readmeFilename": "README.md",
"directories": {
"example": "examples",
"test": "test"
}
}