-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 3.37 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
{
"name": "mizarwidget",
"version": "1.0.0",
"description": "API of geographical and astronomical display and navigation (Widget)",
"main": "./build/generated/MizarWidget.min.js",
"directories": {
"example": "examples",
"test": "tests"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"scripts": {
"jsdoc": "jsdoc -c jsdoc.conf",
"jshint": "jshint -c ./.jshintrc src/*",
"start": "http-server -d -o",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node node_modules/requirejs/bin/r.js -o build/buildMizarWidget.js",
"license": "mkdir -p licenses-3rd/npm && license-checker --production --relativeLicensePath | awk 'NR > 5' > licenses-3rd/npm/LICENSES",
"build:prod": "r.js -o build/buildMizarWidget.js && uglifyjs --compress --mangle -o MizarWidget.min.js2 MizarWidget.min.js && mv MizarWidget.min.js2 MizarWidget.min.js",
"build:dev": "r.js -o build/buildMizarWidget.js",
"build:css": "r.js -o cssIn=css/style.css out=css/style.min.css",
"build:dist": "npm run build:css && npm run license && npm run build:prod && rm -rf dist && mkdir -p dist/css && cp MizarWidget.min.js dist/ && cp -r external/Mizar/shaders dist/ && cp -r conf dist/ && cp -r data dist/ && cp build/index.html dist/ && cp -r css/images dist/css/ && cp css/style.min.css dist/css/ && cp favicon.ico dist/ && cp LICENSE dist/ && cp -r licenses-3rd dist/ && cp node_modules/underscore/underscore-min.js dist/",
"build:datacube": "cd external && git clone https://github.com/MizarWeb/DataCube.git && cd DataCube && npm install && npm run build-mizar && cd ../../ && rm -rf templates/datacube && mkdir templates/datacube && cp -r external/DataCube/dist/* templates/datacube/"
},
"repository": {
"type": "git",
"url": "https://github.com/MizarWeb/MizarWidget"
},
"keywords": [
"astronomy",
"mapping",
"3D",
"2D"
],
"author": "CNES",
"contributors": [
{
"name": "Jean-Christophe Malapert",
"email": "[email protected]"
},
{
"name": "Charly Mourglia",
"email": "[email protected]"
},
{
"name": "Fabien Lavignotte (TPZ & Diginext)"
},
{
"name": "Maxime Shubin (TPZ)",
"email": "[email protected]"
},
{
"name": "Frederic Ligeard (C-S)",
"email": "[email protected]"
},
{
"name": "Bastien Fiorito (Akka)",
"email": "[email protected]"
},
{
"name": "Mathieu Gond (Akka)",
"email": "[email protected]"
}
],
"license": "GPL-3.0",
"dependencies": {
"grunt": "^1.0.4",
"http-server": "^0.11.1",
"jquery": "^2.2.4",
"jquery-datetimepicker": "^2.5.16",
"jquery-mousewheel": "^3.1.13",
"jquery-once": "^2.2.1",
"jquery-ui-dist": "^1.12.1",
"jquery-ui-timepicker-addon": "^1.6.3",
"jquery.nicescroll": "^3.7.6",
"microplugin": "0.0.3",
"moment": "^2.22.2",
"php-date-formatter": "^1.3.4",
"postinstall": "^0.4.2",
"requirejs": "^2.3.2",
"requirejs-plugins": "^1.0.2",
"rsvp": "^4.8.4",
"selectize": "^0.12.6",
"sifter": "^0.5.3",
"underscore": "^1.9.1"
},
"devDependencies": {
"ink-docstrap": "^1.3.0",
"license-checker": "^8.0.3",
"jsdoc": "^3.4.3",
"jshint": "^2.9.4",
"jslint": "^0.10.3",
"uglify-es": "github:mishoo/UglifyJS2#harmony"
}
}