-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "icobench",
"version": "1.0.0",
"description": "ICObench Data API allows you to get various information and data from the platform including ICO listings, ratings, and stats.",
"homepage": "https://icobench.com/developers",
"contributors": [
{
"name": "Anton Kandybo",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"url": "https://github.com/dublicator/icobench",
"type": "git"
},
"scripts": {
"clean": "rimraf dist",
"prepare": "npm run clean && tsc",
"start": "npm run prepare && node dist/examples/index.js"
},
"author": "Anton Kandybo <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"config": "^1.29.2"
},
"devDependencies": {
"@types/config": "0.0.33",
"@types/node": "^9.3.0",
"rimraf": "^2.6.2",
"typescript": "^2.6.2"
}
}