-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.77 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dust-compiler",
"version": "0.3.9",
"author": "James Young <[email protected]> (http://jamsyoung.com)",
"description": "Dust.js template watcher/compiler with support for notifications on OS X, Linux, and even Windows",
"preferGlobal": true,
"main": "dust-compiler.js",
"bin": {
"dust-compiler": "./dust-compiler-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jamsyoung/dust-compiler"
},
"bugs": {
"url": "https://github.com/jamsyoung/dust-compiler/issues",
"email": "[email protected]"
},
"man": "./man/man1/dust-compiler.1",
"scripts": {
"build-man": "node_modules/.bin/marked-man src/man/man1/dust-compiler.1.md > man/man1/dust-compiler.1",
"test": "grunt test"
},
"dependencies": {
"colors": "0.6.2",
"debug": "1.0.2",
"dustjs-linkedin": "2.4.0",
"log-notify": "0.2.0",
"mkdirp": "0.5.0",
"optimist": "0.6.1",
"watch": "0.10.0",
"wrench": "1.5.8"
},
"devDependencies": {
"blanket": "1.1.6",
"chai": "1.9.1",
"grunt": "0.4.5",
"grunt-complexity": "0.2.0",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-mocha-test": "0.11.0",
"marked-man": "0.1.3"
},
"engines": {
"node": ">=0.10.21",
"npm": ">=1.3.11"
},
"keywords": [
"compiler",
"dust compiler",
"dust",
"dust.js",
"dustjs",
"dustjs-linkedin",
"notification center",
"notify-send",
"terminal-notifier"
],
"license": {
"type": "MIT",
"url": "https://github.com/jamsyoung/dust-compiler/blob/master/LICENSE.md"
}
}