-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "chrome-volume-manager",
"version": "1.1.0",
"description": "Chrome extension to control any tab's volume separately",
"files": [
"dist",
"!*.map"
],
"scripts": {
"build": "parcel build src/popup.html src/background.ts",
"watch": "parcel watch src/popup.html src/background.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piousdeer/chrome-volume-manager.git"
},
"author": "piousdeer",
"license": "ISC",
"bugs": {
"url": "https://github.com/piousdeer/chrome-volume-manager/issues"
},
"homepage": "https://github.com/piousdeer/chrome-volume-manager#readme",
"devDependencies": {
"@types/material-components-web": "^0.43.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.2.1",
"sass": "^1.23.2",
"tslint": "^5.20.0",
"tslint-config-standeerd": "^4.0.0",
"typescript": "^3.6.4"
},
"dependencies": {
"chrome-extension-async": "^3.4.1",
"material-components-web": "^3.2.0"
}
}