-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.96 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.96 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "feed-media-audio-player",
"description": "Streaming audio client library for use in conjunction with Feed.fm",
"homepage": "https://feed.fm/",
"author": {
"name": "Eric Lambrecht",
"email": "eric@feed.fm"
},
"version": "1.103.6",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve .",
"ios": "ngrok http 5000"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"apimocker": "^1.1.4",
"babel-plugin-lodash": "^3.3.4",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.7.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-visualizer": "^4.0.4",
"serve": "^11.3.0"
},
"dependencies": {
"resolve": "^1.17.0",
"tiny-cookie": "^2.3.2",
"whatwg-fetch": "^3.0.0"
},
"main": "lib/index.js",
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"lib",
"dist"
],
"license": "SEE LICENSE IN LICENSE.md",
"eslintConfig": {
"env": {
"es6": true,
"browser": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
]
}
}
}