forked from machty/emblem.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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": "emblem",
"description": "Templating language targeting Handlebars with default Ember.js conventions",
"version": "0.3.9",
"homepage": "http://www.emblemjs.com/",
"keywords": [
"ember",
"handlebars",
"template",
"html",
"indentation"
],
"repository": {
"type": "git",
"url": "git://github.com/machty/emblem.js.git"
},
"engines": {
"node": ">=0.4.7"
},
"dependencies": {
"handlebars": ">= 1.0.10",
"optimist": "~0.3",
"uglify-js": "~1.2",
"StringScanner": "~0.0.3"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-coffee": "~0.7.0",
"grunt-peg": "git://github.com/machty/grunt-peg.git#bff7e9145104f9f75117f082f7e43df43c99572a",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-browserify": "~1.2.3",
"grunt-contrib-qunit": "~0.2.2",
"grunt-simple-mocha": "~0.4.0",
"grunt-saucelabs": "~4.0.2",
"matchdep": "~0.1.2",
"grunt-cli": "~0.1.6",
"grunt-contrib-connect": "~0.1.2",
"grunt-contrib-watch": "~0.2.0",
"connect-redirection": "0.0.1",
"grunt-open": "~0.2.2"
},
"main": "lib/emblem.js",
"bin": {
"emblem": "bin/emblem"
},
"scripts": {
"build": "./node_modules/grunt-cli/bin/grunt build",
"test": "./node_modules/grunt-cli/bin/grunt test"
},
"optionalDependencies": {}
}