forked from opensensorhub/osh-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.8 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
{
"name": "@osh/osh-js",
"version": "3.1.5",
"description": "OSH javascript Toolkit",
"main": "source/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",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:bundlers": "bash tests/bundler/test-bundlers.sh",
"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-package": "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-package": "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-package && yarn transpile-package && node config/prepare-package",
"transpile-lib": "tsc --project config/tsconfig-lib.json && shx cp -rf source/vue dist/vue && shx cp -fr source/core/resources dist/core/resources && shx cp -fr source/ext/resources dist/ext/resources",
"copy-sources-lib": "shx cp -rf source/ dist",
"prepare-lib": "rm -fr dist; shx mkdir -p dist",
"build-lib": "yarn prepare-lib && yarn copy-sources-lib && yarn transpile-lib && node config/prepare-lib && tar -czvf osh-js.tar.gz dist/* && mv osh-js.tar.gz ./dist"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@types/linkify-it": "3.0.5",
"@types/markdown-it": "^14.1.1",
"babel-jest": "^30.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"empty-module": "0.0.2",
"file-loader": "^5.1.0",
"jsdoc": "^4.0.3",
"jest": "^30.2.0",
"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": "^4.0.0",
"typescript": "^4.3.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"unminified-webpack-plugin": "^2.0.0",
"vite": "^6.2.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^1.7.2",
"wnumb": "^1.2.0"
}
}