forked from recamshak/ibrik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "ibrik",
"description": "CoffeeScript coverage tool",
"homepage": "http://github.com/Constellation/ibrik.html",
"main": "./lib/ibrik",
"directories": {
"lib": "./lib",
"tools": "./tools"
},
"bin": {
"ibrik": "./bin/ibrik"
},
"version": "1.1.1",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"web": "http://github.com/Constellation"
}],
"repository": {
"type": "git",
"url": "http://github.com/recamshak/ibrik.git"
},
"dependencies": {
"lodash": "~2.4.1",
"coffee-script": "~ 1.7.1",
"istanbul": "*",
"optimist": "*",
"escodegen": "*",
"mkdirp": "*",
"which": "*",
"estraverse": "*",
"esprima": "1.0.x",
"fileset": "0.1.x"
},
"devDependencies": {
"mocha": "*",
"chai": "*",
"promised-io": "~0.3.4",
"bluebird": "~1.0.3"
},
"licenses": [{
"type": "BSD",
"url": "http://github.com/Constellation/ibrik/raw/master/LICENSE.BSD"
}],
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register",
"build": "make build",
"watch": "make watch"
}
}