-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.85 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
{
"name": "cesium-sensor-volumes-71",
"version": "1.71.0",
"description": "A Cesium plugin for visualizing sensor volumes.",
"homepage": "https://cesiumjs.org",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rulonder/cesium-sensor-volumes-71.git"
},
"keywords": [
"cesium"
],
"dependencies": {
"cesium": "1.74.0",
"requirejs": "^2.3.6",
"requirejs-text": "^2.0.15"
},
"devDependencies": {
"almond": "^0.3.3",
"browser-sync": "^2.26.13",
"del": "^6.0.0",
"electron": "10.1.4",
"event-stream": "^4.0.1",
"globby": "^11.0.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-if": "^3.0.0",
"gulp-order": "^1.2.0",
"gulp-requirejs-optimize": "^1.3.0",
"gulp-size": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-xo": "^0.24.0",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-electron-launcher": "^0.3.0",
"karma-jasmine": "^4.0.1",
"karma-requirejs": "^1.1.0",
"lodash.assign": "^4.2.0",
"merge-stream": "^2.0.0",
"run-sequence": "^2.2.1",
"through2": "^4.0.2"
},
"scripts": {
"build": "gulp build",
"start": "gulp serve",
"test": "gulp test",
"ci": "gulp ci"
},
"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"
]
}
}
}