-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.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
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
{
"name": "yasgui-yasr",
"description": "Yet Another SPARQL Resultset GUI",
"version": "2.4.12",
"main": "src/main.js",
"scripts": {
"dev": "gulp serve",
"build": "gulp"
},
"licenses": [
{
"type": "MIT",
"url": "http://yasr.yasgui.org/license.txt"
}
],
"author": "Laurens Rietveld",
"homepage": "http://yasr.yasgui.org",
"devDependencies": {
"browserify": "^6.1.0",
"gulp": "~3.9.0",
"gulp-bump": "^0.1.11",
"gulp-concat": "^2.4.1",
"gulp-connect": "^2.0.5",
"gulp-embedlr": "^0.5.2",
"gulp-filter": "^1.0.2",
"gulp-git": "^0.5.2",
"gulp-jsvalidate": "^0.2.0",
"gulp-livereload": "^1.3.1",
"gulp-minify-css": "0.3.11",
"gulp-notify": "^2.0.1",
"gulp-rename": "^1.2.0",
"gulp-streamify": "0.0.5",
"gulp-tag-version": "^1.1.0",
"gulp-uglify": "~0.2.1",
"require-dir": "^0.1.0",
"run-sequence": "^1.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "~0.1.1",
"watchify": "^0.6.4",
"gulp-sourcemaps": "^1.2.8",
"exorcist": "^0.1.6",
"vinyl-transform": "0.0.1",
"gulp-sass": "^2.2.0",
"bootstrap-sass": "~3.3.1",
"browserify-transform-tools": "^1.2.1",
"gulp-cssimport": "^1.3.1",
"gulp-html-replace": "^1.4.1",
"browserify-shim": "^3.8.1"
},
"bugs": "https://github.com/YASGUI/YASR/issues/",
"keywords": [
"JavaScript",
"SPARQL",
"Editor",
"Semantic Web",
"Linked Data"
],
"maintainers": [
{
"name": "Laurens Rietveld",
"email": "[email protected]",
"web": "http://laurensrietveld.nl"
}
],
"repository": {
"type": "git",
"url": "https://github.com/YASGUI/YASR.git"
},
"dependencies": {
"jquery": "1.11.0",
"codemirror": "^4.7.0",
"yasgui-utils": "^1.4.1",
"pivottable": "^1.2.2",
"jquery-ui": "1.10.5",
"cytoscape": "^2.3.11",
"lodash": "^3.6.0"
},
"browserify-shim": {
"google": "global:google"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"optionalShim": {
"codemirror": {
"require": "codemirror",
"global": "CodeMirror"
},
"jquery": {
"require": "jquery",
"global": "jQuery"
},
"../../lib/codemirror": {
"require": "codemirror",
"global": "CodeMirror"
},
"../lib/DataTables/media/js/jquery.dataTables.js": {
"require": "datatables",
"global": "jQuery"
},
"datatables": {
"require": "datatables",
"global": "jQuery"
},
"jquery-ui/sortable": {
"require": "jquery-ui/sortable",
"global": "jQuery"
},
"pivottable": {
"require": "pivottable",
"global": "jQuery"
}
}
}