-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "@spinamp/spinamp-sdk",
"version": "0.0.13",
"description": "Set of javascript async functions for communication between client app and the spinamp pipeline",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"test": "jest",
"build": "tsc && tsc-alias",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"format": "npx prettier --write src",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinamp/spinamp-sdk.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/spinamp/spinamp-sdk/issues"
},
"homepage": "https://github.com/spinamp/spinamp-sdk",
"dependencies": {
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"ethers": "^5.6.9"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tsc-alias": "^1.7.0",
"typescript": "^4.7.4"
}
}