-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@openeo/processes-docgen",
"version": "1.5.1",
"author": "openEO Consortium",
"contributors": [
{
"name": "Matthias Mohr"
}
],
"description": "Library to generate a user Interface for documents following the specification for openEO processes.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-eo/openeo-processes-docgen/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/open-eo/openeo-processes-docgen.git"
},
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build --report --target lib --name DocGen src/DocGen.vue",
"build_standalone": "vue-cli-service build"
},
"main": "dist/DocGen.umd.js",
"files": [
"src/*",
"dist/css/*.css",
"dist/*.css",
"dist/*.js"
],
"dependencies": {
"@openeo/js-commons": "^1.5.0",
"@openeo/vue-components": "^2.17.0",
"axios": "^1.0.0",
"core-js": "^3.6.5",
"vue": "^2.7.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"sass": "^1.35.2",
"sass-loader": "^10.2.0"
},
"browserslist": [
"> 1%",
"chrome >= 69"
]
}