forked from Constellation/ibrik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "ibrik",
"description": "CoffeeScript coverage tool",
"homepage": "https://github.com/Constellation/ibrik",
"main": "./lib/ibrik",
"directories": {
"lib": "./lib",
"tools": "./tools"
},
"bin": {
"ibrik": "./bin/ibrik"
},
"version": "1.1.2-dev",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "https://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "git://github.com/Constellation/ibrik.git"
},
"dependencies": {
"lodash": "~2.4.1",
"coffee-script-redux": "=2.0.0-beta8",
"istanbul": "~0.2.4",
"estraverse": "~1.5.0",
"escodegen": "~1.1.0",
"which": "~1.0.5",
"mkdirp": "~0.3.5",
"optimist": "~0.6.1"
},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.17.1",
"promised-io": "~0.3.4",
"bluebird": "~1.0.3"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/Constellation/ibrik/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "mocha --compilers coffee:coffee-script-redux/register",
"build": "make build",
"watch": "make watch",
"release": "npm run-script build && npm publish ."
}
}