-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 834 Bytes
/
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
{
"name": "soundcloud-control",
"version": "0.7.0",
"description": "SoundCloud Control browser extension",
"repository": {
"type": "git",
"url": "https://github.com/JohannesFischer/soundcloud-control.git"
},
"scripts": {
"start": "web-ext run --bc",
"lint:ext": "web-ext lint",
"lint:js": "eslint ./src/",
"build": "rollup -c",
"build:ext": "web-ext build",
"test": "npm run lint:ext && npm run lint:js"
},
"keywords": [
"soundcloud",
"webextension",
"firefox"
],
"author": "Johannes Fischer",
"license": "MIT",
"private": true,
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-esnext": "^4.1.0",
"rollup": "^2.44.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"web-ext": "^6.0.0"
},
"dependencies": {}
}