-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 2.03 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
{
"name": "osh-js",
"version": "2.1.0",
"description": "OSH javascript Toolkit",
"main": "core/OSH.js",
"repository": {
"type": "git",
"url": "git+https://github.com/opensensorhub/osh-js.git"
},
"keywords": [
"OSH",
"Sensors",
"Toolkit",
"Javascript",
"GIS",
"Spatial",
"OGC",
"SensorML"
],
"author": "OSH community",
"license": "ISC",
"bugs": {
"url": "https://github.com/opensensorhub/osh-js/issues"
},
"homepage": "https://github.com/opensensorhub/osh-js#readme",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"documentation": "yarn --cwd jsdoc/ clean && yarn --cwd jsdoc/ install && yarn --cwd jsdoc/ all",
"vuepress": "yarn install && shx rm -fr vuepress/docs/dist; yarn --cwd vuepress/docs prod",
"clean-package": "rm -fr ./build",
"transpile": "tsc --project config/tsconfig-build.json && shx cp -rf source/vue build/osh-js/vue && shx cp -fr source/core/resources build/osh-js/core/resources && shx cp -fr source/ext/resources build/osh-js/ext/resources",
"copy-sources": "shx cp -rf source/ build/osh-js/source",
"prepare-package": "shx mkdir -p build/osh-js",
"build-package": "yarn clean-package && yarn prepare-package && yarn copy-sources && yarn transpile && node config/prepare-package"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"empty-module": "0.0.2",
"file-loader": "^5.1.0",
"jsdoc": "^3.6.4",
"moment": "^2.24.0",
"npm-install-webpack-plugin": "^4.0.5",
"null-loader": "^3.0.0",
"patch-package": "^6.2.2",
"shx": "^0.3.3",
"strip-ansi": "^6.0.0",
"style-loader": "^1.1.3",
"typescript": "^4.3.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2",
"wnumb": "^1.2.0",
"worker-loader": "^2.0.0",
"worker-plugin": "^4.0.2"
},
"dependencies": {}
}