-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "handlebars-helper",
"version": "0.0.12",
"description": "A collection of helpers for quick and tasty Handlebars templates",
"main": "index.js",
"scripts": {
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/SparkartGroupInc/handlebars-helpers.git"
},
"keywords": [
"Handlebars",
"helpers"
],
"author": {
"name": "Timothy Kempf",
"email": "[email protected]",
"url": "http://sparkart.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SparkartGroupInc/handlebars-helpers/issues"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-browserify": "~1.2.4",
"grunt-contrib-uglify": "~0.2.4",
"handlebars": "~1.0.12",
"tape": "~1.1.1"
},
"dependencies": {
"strftime": "~0.7.0",
"new-date": "~0.2.0",
"JSON": "^1.0.0",
"lodash.isarray": "^2.4.1",
"lodash.reduce": "^2.4.1"
},
"testling": {
"files": "test/index.js",
"browsers": [
"iexplore/6..latest",
"firefox/20..latest",
"chrome/25..latest",
"safari/4.0..latest",
"opera/11.0..latest"
]
}
}