forked from MizarWeb/Mizar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.96 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.96 KB
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
{
"name": "mizar",
"version": "1.0.0",
"description": "API of geographical and astronomical display and navigation",
"keywords": [
"astronomy",
"Earth",
"Mars",
"mapping",
"3D",
"2D"
],
"repository": {
"type": "git",
"url": "https://github.com/MizarWeb/Mizar"
},
"license": "GPL-3.0",
"author": "CNES",
"contributors": [
{
"name": "Jean-Christophe Malapert",
"email": "jean-christophe.malapert@cnes.fr"
},
{
"name": "Charly Mourglia",
"email": "charly.mourglia@diginext.fr"
},
{
"name": "Fabien Lavignotte (TPZ & Diginext)"
},
{
"name": "Maxime Shubin (TPZ)",
"email": "maxime.shubin@telespazio.com"
},
{
"name": "Frederic Ligeard (C-S)",
"email": "frederic.ligeard@c-s.fr"
},
{
"name": "Bastien Fiorito (Akka)",
"email": "bastien.fiorito@akka.eu"
},
{
"name": "Mathieu Gond (Akka)",
"email": "m.gond@akka.eu"
}
],
"main": "dist/mizar.esm.js",
"module": "dist/mizar.esm.js",
"browser": "dist/mizar.esm.js",
"directories": {
"doc": "Markdown documentation",
"api_doc": "API documentation",
"dist": "build output",
"examples": "Some examples",
"licenses-3rd": "COTS licences",
"shaders": "OpenGL shaders",
"tests": "Some tests"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"conventional-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"conventional-github-releaser": "conventional-github-releaser -p angular",
"deploy:web": "npm run build && npm run jsdoc && mkdir -p $npm_package_config_output && cp ./dist/mizar.min.js $npm_package_config_output && cp README.md $npm_package_config_output && cp ./static/mizar.png $npm_package_config_output && cp -r api_doc $npm_package_config_output",
"deploy:web:tmp": "npm run deploy:web --Mizar:output=/tmp/website",
"dev": "rollup -c -w",
"doc:clean": "rm -rf api_doc && rm -rf tutorials",
"doc:gen": "rm -rf api_doc && rm -rf tutorials && cd scripts && python generateTutorial.py && cd .. && jsdoc --readme ./README.md -c jsdoc.conf && cp -r ./tutorials/resources ./api_doc && cp -r ./tutorials/data ./api_doc",
"doc:open": "http-server -o ./api_doc/index.html",
"format": " prettier --write .",
"lint": "eslint --fix .",
"major-release": "npm version major && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"push": "git push --follow-tags",
"push:git": "git push --tags origin HEAD:master",
"release": "npm run lint && npm run build:prod && npm run license",
"stats:open": "sensible-browser ./stats.html",
"test": "jest ./tests/**"
},
"config": {
"output": "./website"
},
"dependencies": {
"file-saver": "^2.0.2",
"gzip-js": "^0.3.2",
"jquery-ui-bundle": "^1.12.1-migrate",
"jscsv": "^1.1.4",
"jsvotable": "^2.0.2",
"jszip": "^3.4.0",
"moment": "^2.22.1",
"pnltri": "^2.1.1",
"underscore": "^1.8.3",
"wms-capabilities": "^0.4.0",
"xmltojson": "^1.3.5",
"jquery": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-preset-modern-browsers": "^15.0.2",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"http-server": "^0.12.3",
"jest": "^25.5.2",
"jsdoc": "^3.6.4",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-amd": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0",
"sanitize-html": "^1.23.0"
},
"engines": {
"node": ">=10"
}
}