-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
{
"name": "crypto-news-api",
"version": "2.2.2",
"description": "API to get a crypto newsfeed in your app",
"main": "dist/node/index.node.js",
"types": "dist/node/index.node.d.ts",
"scripts": {
"build": "rimraf dist; webpack; tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptocontrol/nodejs-api.git"
},
"keywords": [
"crypto",
"news",
"cryptocurrency",
"blockchain",
"api"
],
"author": "Steven Enamakel <enamakel@cryptocontrol.io>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cryptocontrol/nodejs-api/issues"
},
"homepage": "https://github.com/cryptocontrol/nodejs-api#readme",
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/debug": "0.0.30",
"@types/node-fetch": "^1.6.9",
"@types/qs": "^6.5.1",
"exports-loader": "^0.7.0",
"rimraf": "^2.6.2",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4"
},
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"node-fetch": "^2.1.2",
"qs": "^6.5.2",
"whatwg-fetch": "^2.0.4"
}
}