This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
51 lines (51 loc) · 1.67 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
{
"version": "1.0.0",
"homepage": "https://github.com/jblotus/Try-Handlebars.js",
"description": "an application for trying out handlebars in the browser",
"license": "MIT",
"bugs": {
"url": "https://github.com/jblotus/Try-Handlebars.js/issues"
},
"name": "tryhandlebarsjs",
"private": true,
"contributors": [
"James Fuller (http://www.jblotus.com/)",
"Matthew Kime <matt@mattki.me> (http://mattki.me/)"
],
"repository": {
"type": "git",
"url": "https://github.com/jblotus/Try-Handlebars.js.git"
},
"devDependencies": {
"JSONPath": "~0.10.0",
"grunt": "~0.4.5",
"grunt-bower-install": "~1.6.0",
"grunt-bower-install-simple": "~1.1.2",
"grunt-contrib-sass": "^0.9.2",
"jit-grunt": "^0.9.1",
"jspm": "^0.16.13",
"load-grunt-config": "~0.17.1",
"time-grunt": "*"
},
"main": "Gruntfile.js",
"scripts": {
"install": "jspm install; bower install; cd components/sassquatch2; bower install; cd ../..; grunt sass; jspm bundle-sfx js/script --minify",
"clean": "rm -r build.js build.js.map components jspm_packages css"
},
"jspm": {
"dependencies": {
"hbs130": "github:components/handlebars.js@1.3.0",
"hbs200": "github:components/handlebars.js@2.0.0",
"hbs303": "github:components/handlebars.js@3.0.3",
"hbs403": "github:components/handlebars.js@4.0.3",
"jquery": "github:components/jquery@^2.1.4",
"mustache120": "github:janl/mustache.js@1.2.0",
"mustache213": "github:janl/mustache.js@2.1.3"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}