-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
63 lines (63 loc) · 1.39 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": "ibrik",
"description": "CoffeeScript coverage tool",
"homepage": "https://github.com/Constellation/ibrik",
"main": "./lib/ibrik",
"directories": {
"lib": "./lib",
"tools": "./tools"
},
"bin": {
"ibrik": "./bin/ibrik"
},
"version": "2.0.1-dev",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"web": "https://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "git://github.com/Constellation/ibrik.git"
},
"dependencies": {
"coffee-script": "~1.8.0",
"esprima": "1.2.x",
"estraverse": "^1.9.0",
"fileset": "0.1.x",
"istanbul": "~0.3.2",
"lodash": "~2.4.1",
"mkdirp": "~0.5.0",
"optimist": "~0.6.1",
"which": "~1.0.5"
},
"devDependencies": {
"bluebird": "^2.4.2",
"chai": "~1.10.0",
"chalk": "^0.5.1",
"gulp": "^3.8.10",
"gulp-coffee": "^2.2.0",
"gulp-coffeelint": "^0.4.0",
"gulp-mocha": "^2.0.0",
"mocha": "~2.0.1"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/Constellation/ibrik/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "npm run lint && npm run unit-test",
"unit-test": "gulp test",
"lint": "gulp lint",
"build": "gulp build",
"watch": "gulp watch",
"release": "npm run build && npm publish ."
}
}