-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
64 lines (64 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
64
{
"name": "haml-coffee",
"description": "Haml templates where you can write inline CoffeeScript.",
"keywords": [
"haml",
"coffeescript",
"templating",
"html",
"javascript",
"language",
"compiler"
],
"author": "Michael Kessler <michi@flinkfinger.com>",
"maintainers": [
{
"name": "Michael Kessler"
}
],
"version": "1.15.0",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/netzpirat/haml-coffee/raw/master/LICENSE"
}
],
"browserify": "./src/haml-coffee",
"engines": {
"node": ">=0.4.0"
},
"directories": {
"lib": "./src"
},
"bin": {
"haml-coffee": "./bin/haml-coffee"
},
"dependencies": {
"coffeescript": ">= 1.1.3",
"walkdir": "~0.0.7",
"yargs": "^17.5.0"
},
"devDependencies": {
"browserify": "~1.17.3",
"coffee-script": "^1.12.7",
"grunt": "~0.4.2",
"grunt-contrib-uglify": "~0.2.7",
"grunt-jasmine-node": "~0.1.0",
"grunt-regarde": "~0.1.1",
"grunt-shell": "~0.6.1",
"grunt-text-replace": "~0.3.10",
"jasmine-node": "~1.12.0",
"matchdep": "~0.3.0"
},
"homepage": "https://github.com/netzpirat/haml-coffee",
"repository": {
"type": "git",
"url": "git://github.com/netzpirat/haml-coffee.git"
},
"bugs": {
"url": "https://github.com/netzpirat/haml-coffee/issues"
},
"scripts": {
"test": "jasmine-node --coffee spec"
}
}