forked from VisualDataWeb/LD-VOWL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.49 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
{
"name": "ld-vowl",
"version": "1.2.2",
"description": "Extract ontology information out of arbitrary SPARQL endpoints and visualize it using a slightly adjusted form of VOWL.",
"author": "Marc Weise <weisemc@studi.informatik.uni-stuttgart.de>",
"scripts": {
"start": "webpack-dev-server --content-base app --inline --hot --open",
"host": "webpack-dev-server --host 0.0.0.0 --content-base app --inline --hot",
"test": "jest",
"e2etest": "protractor protractor.conf.js",
"lint": "eslint . --ext .js || true",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js"
},
"main": "app/app.js",
"repository": {
"type": "git",
"url": "https://github.com/VisualDataWeb/LD-VOWL"
},
"bugs": {
"url": "https://github.com/VisualDataWeb/LD-VOWL/issues"
},
"keywords": [
"Linked Data",
"SPARQL",
"Visualization",
"VOWL"
],
"dependencies": {
"angular": "1.4.8",
"angular-animate": "1.4.8",
"angular-route": "~1.4.8",
"angular-ui-bootstrap": "~1.1.0",
"bootstrap": "~3.3.6",
"bootstrap-loader": "^1.3.1",
"bootstrap-sass": "^3.3.7",
"d3": "~3.5.10",
"exports-loader": "~0.6.2",
"file-loader": "~0.8.5",
"imports-loader": "~0.6.5",
"ng-cache-loader": "0.0.15",
"resolve-url-loader": "^1.6.1",
"url-loader": "~0.5.7"
},
"devDependencies": {
"angular-hint": "~0.3.8",
"angular-mocks": "~1.4.9",
"babel-core": "~6.3.13",
"babel-eslint": "~4.1.8",
"babel-jest": "^17.0.0",
"babel-loader": "~6.2.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "~6.3.13",
"babel-preset-react": "^6.16.0",
"chai": "~3.4.1",
"css-loader": "~0.23.0",
"eslint": "~1.6.0",
"eslint-config-angular": "~0.4.0",
"eslint-loader": "~1.2.1",
"eslint-plugin-angular": "~0.15.0",
"eslint-plugin-react": "~3.16.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "~0.8.5",
"html-webpack-plugin": "^2.22.0",
"isparta-loader": "~2.0.0",
"istanbul-instrumenter-loader": "~0.2.0",
"jasmine-core": "~2.4.1",
"jest": "^17.0.3",
"jest-cli": "^17.0.0",
"karma": "~0.13.19",
"karma-babel-preprocessor": "~6.0.1",
"karma-chai-plugins": "~0.6.1",
"karma-chrome-launcher": "0.2.3",
"karma-coverage": "~0.5.5",
"karma-jasmine": "~0.3.8",
"karma-phantomjs-launcher": "~0.2.3",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.7.0",
"ng-annotate-loader": "0.0.10",
"ng-annotate-webpack-plugin": "0.1.2",
"node-sass": "~3.4.2",
"phantomjs": "~1.9.19",
"protractor": "~3.2.2",
"sass-loader": "~3.1.2",
"style-loader": "~0.13.0",
"url-loader": "~0.5.7",
"webpack": "~1.12.9",
"webpack-dev-server": "~1.14.0"
},
"jest": {
"verbose": true,
"globals": {
"__LOGGING__": true,
"__SESSION_STORAGE__": false,
"__PROXY_URL__": "http://localhost/proxy.php",
"__VERSION__": "1.1.1",
"__PROXY__": true
},
"setupTestFrameworkScriptFile": "<rootDir>/test/test_jest.js",
"transform": {
".*": "./node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
".+\\.html$": "<rootDir>/test/empty",
".+\\.(css|json)$": "<rootDir>/test/style_mock"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_module/angular",
"<rootDir>/node_module/angular-mocks"
]
},
"private": true,
"homepage": "http://ldvowl.visualdataweb.org/",
"license": "MIT"
}