forked from idanlo/react-spotify-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.87 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
69
70
71
72
73
74
75
76
77
78
{
"name": "react-spotify-api",
"version": "3.0.0",
"keywords": [
"spotify",
"spotify-api",
"react",
"react-spotify",
"react-spotify-api",
"spotify-web-api",
"react-spotify-web-api",
"spotify-web-api-js"
],
"repository": {
"type": "git",
"url": "https://github.com/idanlo/react-spotify-api.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"main": "src/lib/index.js",
"module": "src/lib/index.js",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@types/jest": "^24.9.1",
"codecov": "^3.6.5",
"cross-env": "^5.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "^3.4.0",
"react-styleguidist": "^11.0.1"
},
"peerDependencies": {
"prop-types": "*",
"react": ">=16.8.1",
"react-dom": ">=16.8.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false",
"eject": "react-scripts eject",
"dist": "babel src/lib --out-dir dist --no-comments --ignore \"src/lib/**/*.test.js\" --config-file \"./.babelrc\"",
"styleguide": "styleguidist server",
"styleguide-build": "styleguidist build",
"cov": "codecov"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/lib/**/*.js",
"!node_modules/",
"!src/App.jsx",
"!src/index.js"
]
}
}