forked from xagriff/cesium-sensors
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
73 lines (73 loc) · 1.77 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
{
"name": "cesium-sensor-volumes",
"version": "1.100.0",
"description": "A Cesium plugin for visualizing sensor volumes.",
"homepage": "https://github.com/Flowm/cesium-sensor-volumes",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Flowm/cesium-sensor-volumes.git"
},
"keywords": [
"cesium"
],
"main": "dist/cesium-sensor-volumes.js",
"module": "dist/cesium-sensor-volumes.es.js",
"dependencies": {
"cesium": "^1.102"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.2.1",
"browser-sync": "^2.27.12",
"del": "^6.1.1",
"electron": "23.1.1",
"glsl-strip-comments": "^1.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-xo": "^0.15.0",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-electron-launcher": "^0.3.0",
"karma-jasmine": "^5.1.0",
"karma-requirejs": "^1.1.0",
"rollup": "^3.8.1",
"rollup-plugin-string": "^3.0.0",
"through2": "^4.0.2"
},
"scripts": {
"build": "gulp build",
"start": "gulp serve",
"lint": "gulp lint",
"test": "gulp test",
"ci": "gulp ci",
"gulp": "gulp"
},
"xo": {
"globals": [
"define"
],
"esnext": false,
"rules": {
"capitalized-comments": "off",
"func-names": "off",
"import/no-amd": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/no-webpack-loader-syntax": "off",
"object-curly-spacing": [
"error",
"always",
{
"objectsInObjects": false,
"arraysInObjects": false
}
],
"space-before-function-paren": [
"error",
"never"
]
}
}
}