forked from r-spacex/SpaceX-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
{
"name": "spacex-api",
"version": "2.8.0",
"description": "Open Source REST API for rocket, core, capsule, pad, and launch data",
"main": "./src/app.js",
"scripts": {
"test": "yarn lint && NODE_ENV=test PORT=0 jest --silent",
"start": "node src/app.js",
"lint": "eslint \"**/*.js\"",
"roadster": "node bin/roadster.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-spacex/SpaceX-API"
},
"keywords": [
"spacex",
"space",
"rocket",
"rest-api",
"mongodb",
"koa"
],
"author": "Jake Meyer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/r-spacex/SpaceX-API/issues"
},
"homepage": "https://github.com/r-spacex/SpaceX-API",
"dependencies": {
"dayjs": "^1.7.4",
"koa": "^2.5.2",
"koa-compress": "^3.0.0",
"koa-helmet": "^4.0.0",
"koa-logger": "^3.2.0",
"koa-pino-logger": "^2.1.3",
"koa-redis-cache": "^3.0.1",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"lower-case": "^1.1.4",
"mongodb": "^3.1.1",
"path": "^0.12.7",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"shelljs": "^0.8.2"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^23.4.2",
"nodemon": "^1.18.3",
"supertest": "^3.1.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"setupTestFrameworkScriptFile": "./test/jest.setup.js",
"collectCoverageFrom": [
"src/**",
"!**/node_modules/**",
"!**/vendor/**",
"!**/coverage/**"
]
},
"engines": {
"node": ">=8.x.x"
}
}