-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "mimosa-bless",
"version": "0.2.2",
"homepage": "",
"author": "Bob Pace",
"description": "runs bless on your css",
"contributors": [
{
"name": "FubuMVC",
"email": "[email protected]"
},
{
"name": "Matt Smith",
"email": "[email protected]",
"url": "http://softwarebymatt.com"
}
],
"repository": {
"type": "git",
"url": "http://github.com/DarthFubuMVC/mimosa-fubumvc"
},
"keywords": [
"mimosa",
"module",
"bless"
],
"dependencies": {
"ansi-color": "~0.2.1",
"bless": "https://github.com/aabenoja/bless.js/archive/4.0.0-alpha.1.tar.gz",
"lodash": "2.4.1",
"logmimosa": "1.0.3",
"mimosa": "~2.2.15",
"wrench": "1.5.8"
},
"devDependencies": {
"chai": "~1.0.3",
"coffee-script": "latest",
"coveralls": "^2.10.1",
"istanbul": "^0.2.13",
"mocha": "~1.1.0",
"mocha-lcov-reporter": "0.0.1",
"rewire": "~2.1.3",
"sinon": "^1.11.1"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"main": "./lib/index",
"scripts": {
"prepublish": "mimosa build",
"test": "mocha",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
}
}