-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 3 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
{
"name": "webworldwind-x",
"version": "2.6.1",
"description": "Extensions for Web WorldWind",
"main": "dist/main.js",
"files": [
"dist/main.js",
"dist/main.js.map"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run jsdoc && npm run webpack && npm run copy && npm run remove",
"build:dev": "npm run clean && npm run lint && npm run jsdoc && npm run webpack:dev && npm run copy && npm run remove",
"clean": "del-cli dist",
"copy": "copyfiles examples/*.html dist/ && copyfiles -u 1 dist/*Example.js* dist/examples/ && copyfiles examples/*.png dist/ && copyfiles -u 1 examples/images/* dist/examples && copyfiles -u 1 examples/images/view/* dist/examples && copyfiles index.html dist/ && copyfiles examples/*.css dist/ && copyfiles \"examples/data/**\" dist/ && copyfiles -u 2 dist/examples/*.worker.js* dist/",
"examples:watch": "watch 'npm run build' ./examples",
"jsdoc": "jsdoc --destination dist/api-doc -r src",
"lint": "jshint ./src ",
"test": "karma start --single-run",
"test:watch": "karma start --auto-watch",
"release": "npm run build && npm run version:minor && npm publish",
"remove": "del-cli dist/*Example.js*",
"serve": "http-server ./dist/",
"start": "npm run build && npm run serve",
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"webpack": "webpack-cli --config webpack.config.js --mode production",
"webpack:dev": "webpack-cli --config webpack-dev.config.js --mode production",
"webpack:watch": "webpack-cli --config webpack-dev.config.js -w --mode development"
},
"repository": {
"type": "git",
"url": "https://github.com/ESAFastPrototyping/WebWorldWind-X.git"
},
"keywords": [
"Web World Wind",
"Earth Observation",
"3D Globe"
],
"author": "WebWorldWind ESA Team",
"contributors": [
"ESA Consortium Contact <yann.voumard@solenix.ch>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ESAFastPrototyping/WebWorldWind-X/issues"
},
"homepage": "https://esafastprototyping.github.io/WebWorldWind-X/",
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/preset-env": "7.1.0",
"babel-loader": "8.0.0",
"babel-polyfill": "6.26.0",
"copyfiles": "2.1.1",
"css-loader": "1.0.0",
"del-cli": "1.1.0",
"http-server": "0.11.1",
"jasmine": "3.2.0",
"jsdoc": "^3.6.3",
"jshint": "2.10.2",
"karma": "3.0.0",
"karma-babel-preprocessor": "8.0.1",
"karma-chrome-launcher": "3.0.0",
"karma-cli": "1.0.1",
"karma-jasmine": "1.1.2",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "3.0.5",
"parallelshell": "3.0.2",
"puppeteer": "1.19.0",
"rimraf": "2.6.2",
"style-loader": "0.23.1",
"watch": "1.0.2",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"whatwg-fetch": "3.0.0",
"worker-loader": "2.0.0"
},
"dependencies": {
"easysax": "0.3.2",
"webworldwind-esa": "1.0.0",
"xml-js": "1.6.11"
}
}