-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.75 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
61
62
63
64
65
66
67
68
{
"name": "use-spotify",
"version": "0.0.1-alpha3",
"description": "React hooks for the Spotify Web API",
"homepage": "https://github.com/TimMikeladze/use-spotify#readme",
"bugs": {
"email": "tim.mikeladze@gmail.com",
"url": "https://github.com/TimMikeladze/use-spotify/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/use-spotify.git"
},
"author": "TimMikeladze <tim.mikeladze@gmail.com>",
"license": "MIT",
"keywords": [
"spotify",
"spotify api",
"spotify react",
"spotify hooks",
"react",
"hooks"
],
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"build": "microbundle --jsx React.createElement",
"dev": "microbundle watch --jsx React.createElement",
"prepare": "yarn husky install; yarn build",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"prepublish": "yarn lint; yarn build"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"microbundle": "^0.13.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"spotify-web-api-js": "^1.5.1",
"utility-types": "^3.10.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
}
}