-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "@poprank/sdk",
"version": "1.0.24",
"description": "PopRank API client and types",
"keywords": [
"api",
"client",
"collections",
"crypto",
"leaderboard",
"models",
"nft",
"rounds",
"types"
],
"homepage": "https://github.com/poprank/sdk#readme",
"bugs": {
"url": "https://github.com/poprank/sdk/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/poprank/sdk"
},
"license": "MIT",
"author": {
"name": "PopRank",
"email": "[email protected]",
"url": "https://poprank.io"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "yarn tsc",
"ci": "yarn && yarn build",
"clean": "yarn clean:lib && yarn clean:modules",
"clean:lib": "rimraf lib",
"clean:modules": "rimraf node_modules",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"typescript": "~4.5.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}