This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "cesium-concierge",
"version": "0.0.1",
"license": "Apache-2.0",
"description": "The Cesium concierge partially automates maintenance of GitHub repositories with it's friendly demeanor and refined tastes.",
"author": {
"name": "Analytical Graphics, Inc.",
"url": "https://www.agi.com"
},
"keywords": [
"GitHub",
"bot",
"Cesium"
],
"homepage": "https://cesiumjs.org",
"repository": {
"type": "git",
"url": "https://github.com/CesiumGS/cesium-concierge"
},
"bugs": {
"url": "https://github.com/CesiumGS/cesium-concierge/issues"
},
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@octokit/rest": "^16.16.0",
"@slack/client": "^4.8.0",
"bluebird": "^3.0.0",
"body-parser": "^1.0.0",
"cesium": "^1.35.1",
"express": "^4.0.0",
"fs-extra": "^3.0.0",
"googleapis": "^39.2.0",
"handlebars": "^4.0.10",
"moment": "^2.23.0",
"nconf": "^0.8.4",
"node-schedule": "^1.3.0",
"parse-link-header": "^1.0.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"yaml": "^1.0.2"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-cesium": "^9.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"event-stream": "^3.3.4",
"gulp": "^4.0.2",
"gulp-tap": "1.0.1",
"gulp-zip": "^4.0.0",
"jasmine": "^2.6.0",
"jasmine-spec-reporter": "^4.1.1",
"nyc": "^11.0.3",
"open": "^0.0.5",
"supertest": "^3.0.0",
"yargs": "^8.0.2"
},
"scripts": {
"create-zip": "gulp create-zip",
"eslint": "eslint . --cache",
"start": "node index.js",
"coverage": "gulp coverage",
"test": "gulp test"
}
}