forked from metaphacts/YASGUI.YASR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.06 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
121
122
123
124
125
126
127
128
129
{
"name": "yasgui-yasr",
"description": "Yet Another SPARQL Resultset GUI",
"version": "2.12.18",
"main": "src/main.js",
"license": "MIT",
"author": "Laurens Rietveld",
"homepage": "http://yasr.yasgui.org",
"devDependencies": {
"bootstrap-sass": "^3.3.7",
"browserify": "^13.1.0",
"browserify-transform-tools": "^1.6.0",
"exorcist": "^0.4.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-bump": "^2.2.0",
"gulp-clean-css": "^2.0.12",
"gulp-concat": "^2.6.0",
"gulp-connect": "^4.2.0",
"gulp-cssimport": "^3.1.0",
"gulp-delete-lines": "0.0.7",
"gulp-embedlr": "^0.5.2",
"gulp-filter": "^4.0.0",
"gulp-git": "^2.4.1",
"gulp-html-replace": "^1.6.1",
"gulp-jsvalidate": "^2.1.0",
"gulp-livereload": "^3.8.1",
"gulp-minify-css": "1.2.4",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-streamify": "1.0.2",
"gulp-tag-version": "^1.3.0",
"gulp-uglify": "^1.5.4",
"node-sass": "^3.8.0",
"require-dir": "^0.3.2",
"run-sequence": "^1.2.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "~1.1.0",
"vinyl-transform": "1.0.0",
"watchify": "^3.7.0",
"yasgui-yasqe": "^2.10.1"
},
"bugs": "https://github.com/YASGUI/YASR/issues/",
"keywords": [
"JavaScript",
"SPARQL",
"Editor",
"Semantic Web",
"Linked Data"
],
"scripts": {
"dev": "gulp serve",
"build": "gulp",
"patch": "gulp patch",
"minor": "gulp minor",
"major": "gulp major",
"update-interactive": "npm-check --skip-unused -u"
},
"maintainers": [
{
"name": "Laurens Rietveld",
"email": "[email protected]",
"web": "http://laurensrietveld.nl"
}
],
"repository": {
"type": "git",
"url": "https://github.com/YASGUI/YASR.git"
},
"dependencies": {
"browserify-shim": "^3.8.12",
"codemirror": "^5.17.0",
"color": "^1.0.3",
"colorbrewer": "^1.0.0",
"colormap": "^2.3.0",
"d3": "^4.1.1",
"datatables.net": "^1.10.15",
"datatables.net-dt": "^1.10.15",
"debug": "^3.1.0",
"jquery": "^2.2.4",
"jquery-ui": "1.10.5",
"leaflet": "^1.2.0",
"lodash": "^4.16.1",
"npm-check": "^5.4.5",
"pivottable": "^2.1.0",
"wellknown": "^0.5.0",
"yasgui-utils": "^1.6.7"
},
"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"
},
"datatables": {
"require": "datatables",
"global": "jQuery"
},
"d3": {
"require": "d3",
"global": "d3"
},
"jquery-ui/sortable": {
"require": "jquery-ui/sortable",
"global": "jQuery"
},
"pivottable": {
"require": "pivottable",
"global": "jQuery"
}
}
}