-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
78 lines (78 loc) · 1.84 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",
"version": "1.32.0",
"description": "A Cesium plugin for visualizing sensor volumes.",
"homepage": "https://cesiumjs.org",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jlouns/cesium-sensor-volumes.git"
},
"keywords": [
"cesium"
],
"dependencies": {
"cesium": "1.32.1",
"requirejs": "^2.3.3",
"requirejs-text": "^2.0.15"
},
"devDependencies": {
"almond": "^0.3.3",
"browser-sync": "^2.18.8",
"del": "^2.2.2",
"electron": "1.6.5",
"event-stream": "^3.3.4",
"globby": "^6.1.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-if": "^2.0.2",
"gulp-order": "^1.1.1",
"gulp-requirejs-optimize": "^1.2.0",
"gulp-size": "^2.0.0",
"gulp-util": "^3.0.8",
"gulp-xo": "^0.15.0",
"jasmine-core": "^2.5.2",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-electron-launcher": "^0.2.0",
"karma-jasmine": "^1.1.0",
"karma-requirejs": "^1.1.0",
"lodash.assign": "^4.2.0",
"merge-stream": "^1.0.1",
"run-sequence": "^1.2.2",
"through2": "^2.0.3"
},
"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"
]
}
}
}