-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "spacebot",
"version": "0.2.0",
"description": "spacebot - A Slack Bot for exploring NASA images.",
"scripts": {
"pretest": "npm install",
"test": "npm run lint && mocha test/*.spec.js --reporter spec",
"lint": "eslint ."
},
"keywords": [
"slackbot",
"slack",
"nasa",
"space",
"mars",
"apod",
"rovers",
"curiosity",
"astronomy"
],
"author": "Michael Holtzman <[email protected]>",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/mikelax/spacebot"
},
"devDependencies": {
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-things": "^0.2.0",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"joi": "17.6.0",
"mocha": "10.0.0",
"supertest": "6.2.4"
},
"dependencies": {
"bluebird": "3.5.2",
"create-error": "0.3.1",
"lodash": "4.17.21",
"moment": "2.22.2",
"qs": "6.9.4",
"request": "2.88.2",
"request-promise": "4.2.6"
}
}