This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jspm-ember-demo",
"version": "0.1.0",
"description": "Demo of Ember 2.0.0 and JSPM",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/OrKoN/jspm-ember-playground.git"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.0",
"gulp-babel": "^5.1.0",
"gulp-concat": "^2.5.2",
"gulp-ember-template-compiler": "n-fuse/gulp-ember-template-compiler#2.0.0",
"gulp-htmlmin": "^1.1.1",
"gulp-minify-css": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.4.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-sym": "0.0.14",
"gulp-vcl-preprocessor": "git://github.com/VCL/gulp-vcl-preprocessor",
"jspm": "^0.15.4",
"rimraf": "^2.3.4",
"run-sequence": "^1.1.0",
"systemjs": "^0.16.11",
"vcl-core-modules": "git://github.com/vcl/core-modules.git",
"vcl-default-theme": "git://github.com/vcl/default-theme",
"vcl-default-theme-terms": "git://github.com/vcl/default-theme-terms.git",
"vcl-font-awesome": "git://github.com/VCL/font-awesome"
},
"scripts": {
"postinstall": "jspm install"
},
"jspm": {
"directories": {
"baseURL": "build"
},
"configFile": "jspm.config.js",
"dependencies": {
"ember": "github:components/ember@2.0.0",
"jquery": "github:components/jquery@^2.1.3"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
},
"overrides": {
"github:components/ember@2.0.0": {
"main": "ember.debug",
"format": "global",
"files": [
"ember.debug.js",
"ember.prod.js"
],
"dependencies": {
"jquery": "github:components/jquery@^2.0.3"
},
"shim": {
"ember.debug": {
"deps": [
"jquery"
],
"exports": "Ember"
},
"ember.prod": {
"deps": [
"jquery"
],
"exports": "Ember"
}
}
}
}
}
}