-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 783 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 783 Bytes
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
{
"name": "currentsapi",
"version": "0.1.0",
"description": "A node interface for News API from currentsapi.services",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"build": "babel src --out-dir dist",
"deploy": "npm publish"
},
"keywords": [
"data",
"news",
"api",
"currentsapi",
"news api"
],
"author": "Currents Dev",
"repository": {
"type": "git",
"url": "https://github.com/currents-dev/currentsapi_nodejs"
},
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"dotenv": "^5.0.0",
"mocha": "^5.2.0",
"should": "^11.1.1"
}
}