forked from terrestris/BasiGX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.88 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.88 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
75
76
77
78
79
{
"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": "2.0.2",
"compatVersion": "1.0.0",
"format": "1",
"framework": "ext",
"requires": [
"GeoExt",
"ux"
],
"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": {
"pretest": "npm run lint",
"test": "karma start --single-run",
"test:watch": "karma start karma-watch.conf.js",
"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 && npm run test && istanbul report --root ./coverage lcovonly && cat ./coverage/lcov.info | coveralls",
"html-coverage": "npm run clean-coverage && npm run test && istanbul report --root ./coverage html",
"serve-examples": "serve -l 3000 & opn '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/*",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/terrestris/BasiGX.git"
},
"devDependencies": {
"copyfiles": "2.2.0",
"coveralls": "3.0.9",
"eslint": "6.8.0",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.1",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-expect": "1.1.3",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"mocha": "7.0.1",
"np": "5.2.1",
"opn-cli": "5.0.0",
"puppeteer": "2.1.0",
"rimraf": "3.0.2",
"serve": "11.2.0",
"sinon": "8.1.0",
"uglify-js": "3.8.0"
}
}