-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "carbonldp-example-blog",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"angular2": "^2.0.0-beta.13",
"angular2-carbonldp": "^0.1.7",
"carbonldp": "^0.21.1-ALPHA",
"es6-shim": "^0.35.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-ejs": "^2.1.1",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"gulp-webserver": "^0.9.1",
"jspm": "^0.17.0-beta.12",
"rxjs": "^5.0.0-beta.5",
"typings": "^0.7.8",
"yargs": "^4.3.1"
},
"jspm": {
"name": "app",
"directories": {
"lib": "src/app"
},
"dependencies": {
"angular2": "npm:angular2@^2.0.0-beta.13",
"angular2-carbonldp": "npm:angular2-carbonldp@^0.1.8",
"carbonldp": "npm:carbonldp@^0.25.0",
"codemirror": "npm:codemirror@^5.13.4",
"css": "github:systemjs/plugin-css@^0.1.20",
"highlight.js": "npm:highlight.js@^9.3.0",
"jquery": "npm:jquery@^2.2.2",
"jsonld": "npm:jsonld@^0.4.6",
"medium-editor": "npm:medium-editor@^5.15.1",
"text": "github:systemjs/plugin-text@^0.0.7",
"zone.js": "npm:zone.js@^0.6.8"
},
"devDependencies": {
"plugin-typescript": "github:frankwallis/plugin-typescript@^4.0.5"
},
"peerDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"buffer": "github:jspm/nodelibs-buffer@^0.2.0-alpha",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"constants": "github:jspm/nodelibs-constants@^0.2.0-alpha",
"crypto": "github:jspm/nodelibs-crypto@^0.2.0-alpha",
"dgram": "github:jspm/nodelibs-dgram@^0.2.0-alpha",
"dns": "github:jspm/nodelibs-dns@^0.2.0-alpha",
"ecc-jsbn": "npm:ecc-jsbn@0",
"es6-shim": "npm:es6-shim@^0.35.0",
"events": "github:jspm/nodelibs-events@^0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"http": "github:jspm/nodelibs-http@^0.2.0-alpha",
"https": "github:jspm/nodelibs-https@^0.2.0-alpha",
"jodid25519": "npm:jodid25519@^1.0.0",
"jsbn": "npm:[email protected]",
"net": "github:jspm/nodelibs-net@^0.2.0-alpha",
"os": "github:jspm/nodelibs-os@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"punycode": "github:jspm/nodelibs-punycode@^0.2.0-alpha",
"querystring": "github:jspm/nodelibs-querystring@^0.2.0-alpha",
"reflect-metadata": "npm:[email protected]",
"rxjs": "npm:rxjs@^5.0.0-beta.2",
"stream": "github:jspm/nodelibs-stream@^0.2.0-alpha",
"string_decoder": "github:jspm/nodelibs-string_decoder@^0.2.0-alpha",
"tls": "github:jspm/nodelibs-tls@^0.2.0-alpha",
"tweetnacl": "npm:tweetnacl@0",
"url": "github:jspm/nodelibs-url@^0.2.0-alpha",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha",
"vm": "github:jspm/nodelibs-vm@^0.2.0-alpha",
"zlib": "github:jspm/nodelibs-zlib@^0.2.0-alpha"
},
"overrides": {
"npm:[email protected]": {
"dependencies": {
"readable-stream": "^2.0.2",
"pako": "~0.2.0"
},
"map": {
"_stream_transform": "readable-stream/transform"
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
},
"npm:[email protected]": {
"format": "amd"
},
"npm:[email protected]": {
"map": {
"crypto": "@empty"
}
},
"npm:[email protected]": {
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
}
}
}