-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
91 lines (91 loc) · 3.81 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
84
85
86
87
88
89
90
91
{
"name": "@terrestris/basigx",
"namespace": "BasiGX",
"type": "code",
"creator": "terrestris GmbH & Co. KG",
"author": "terrestris GmbH & Co. KG",
"license": "GPL-3.0",
"summary": "Basic Components for ExtJS 6 and GeoExt 3",
"description": "Basic Components for ExtJS 6 and GeoExt 3",
"detailedDescription": "This package consists of several components that can be used to setup an Application based on ExtJS 6, GeoExt 3 and OL3",
"version": "4.0.0",
"compatVersion": "1.0.0",
"format": "1",
"framework": "ext",
"requires": [
"GeoExt",
"ux"
],
"engines": {
"node": ">=16.13",
"npm": ">=8.5.0"
},
"toolkit": "classic",
"theme": "theme-neptune",
"local": true,
"slicer": {
"js": [
{
"path": "${package.dir}/sass/example/custom.js",
"isWidgetManifest": true
}
]
},
"sass": {
"namespace": "BasiGX",
"etc": "sass/etc/all.scss",
"var": "sass/var",
"src": "sass/src"
},
"output": "${package.dir}/build",
"scripts": {
"test": "npm run lint && npm run test:spec",
"test:spec": "karma start --single-run --reporters=mocha",
"test:watch": "karma start karma-watch.conf.js --reporters=mocha",
"lint": "eslint -c .eslintrc src/ && eslint -c test/.eslintrc test/",
"lint:fix": "eslint -c .eslintrc --fix src/ && eslint -c test/.eslintrc --fix test/",
"clean-coverage": "rimraf coverage",
"ci-coverage": "npm run clean-coverage && karma start --single-run --reporters=dots,coverage && cat ./coverage/*/lcov.info > coverage/lcov.info",
"serve-examples": "serve -l 3000 & open-cli 'http://localhost:3000/examples'",
"build": "npm run test && npm run clean:dist && copyfiles -V -a 'src/**' 'sass/**' 'resources/**' Readme.md LICENSE package.json dist/",
"clean:dist": "rimraf dist",
"postversion": "cp package.json dist/",
"release": "npm run build && np --no-yarn --contents ./dist && git push https://github.com/terrestris/BasiGX.git master --tags",
"generate:docs": "jsduck --config jsduck.json",
"generate:docs:master": "jsduck --config=jsduck.json --output=master/docs --title=\"BasiGX $npm_package_version-dev Documentation\" --warnings=-inheritdoc",
"generate:docs-w-ext:master": "jsduck --config=jsduck-w-ext.json --output=master/docs-w-ext --title=\"BasiGX $npm_package_version-dev Documentation (incl. ExtJS classes)\" --warnings=-all:resources/external/ext-6.2.0",
"generate:docs:tag": "jsduck --config=jsduck.json --output=$npm_package_version/docs --title=\"BasiGX $npm_package_version Documentation\" --warnings=-inheritdoc",
"generate:docs-w-ext:tag": "jsduck --config=jsduck-w-ext.json --output=$npm_package_version/docs-w-ext --title=\"BasiGX $npm_package_version Documentation (incl. ExtJS classes)\" --warnings=-all:resources/external/ext-6.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/terrestris/BasiGX.git"
},
"peerDependencies": {
"@geoext/geoext": ">=6",
"ol": ">=8"
},
"devDependencies": {
"@geoext/geoext": "6.0.0",
"ol": "^8.2.0",
"copyfiles": "2.4.1",
"coveralls": "3.1.1",
"eslint": "8.55.0",
"expect.js": "0.3.1",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-expect": "1.1.3",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"mocha": "10.2.0",
"np": "9.1.0",
"open-cli": "7.2.0",
"puppeteer": "21.6.0",
"rimraf": "5.0.5",
"serve": "14.2.1",
"sinon": "17.0.1",
"uglify-js": "3.17.4"
}
}