forked from pascalopitz/unoffical-sonos-controller-for-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.09 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.09 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
{
"name": "sonos-controller-for-chrome",
"version": "0.0.16",
"description": "Sonos Controller for Chrome",
"main": "dist/background.js",
"scripts": {
"watch": "npm run-script cleanup & npm run-script watch-ui & npm run-script watch-bg",
"watch-ui": "./node_modules/.bin/watch \"npm run-script minify-ui\" src/ui",
"watch-bg": "./node_modules/.bin/watch \"npm run-script minify-bg\" src/background",
"minify-ui": "./node_modules/.bin/browserify -d -t babelify --extension=.jsx -e src/ui/app.js > js/ui.js",
"minify-ui-clean": "./node_modules/.bin/browserify -t babelify --extension=.jsx -e src/ui/app.js > js/ui.js",
"minify-bg": "./node_modules/.bin/browserify -t babelify -e src/background/background.js > js/background.js",
"compile": "npm run-script cleanup && npm run-script minify-ui && npm run-script minify-bg",
"compile-clean": "npm run-script cleanup && npm run-script minify-ui-clean && npm run-script minify-bg",
"cleanup": "rm -Rf ./fonts & rm -Rf ./js && mkdir fonts && mkdir js && cp ./node_modules/material-design-icons/iconfont/* ./fonts/",
"package": "rm ./package.zip & npm run-script compile-clean && zip -r ./package.zip js/ css/ images/ svg/ icons/ fonts/ manifest.json window.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Pascal Opitz",
"email": "contact@pascalopitz.com",
"url": "http://github.com/pascalopitz"
},
"contributors": [
{
"name": "leanto",
"url": "https://github.com/leanto"
}
],
"license": "ISC",
"devDependencies": {
"array-union": "^1.0.0",
"babel": "^4.4.5",
"babelify": "^6.1.2",
"browserify": "^8.1.1",
"deep-equal": "^0.2.1",
"eslint": "^1.10.3",
"flux": "^2.0.3",
"jquery-xml2json": "git+https://github.com/pascalopitz/jQuery-xml2json.git",
"lodash": "^3.0.0",
"material-design-icons": "^2.0.0",
"moment": "^2.9.0",
"omit-keys": "^0.1.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-draggable2": "^0.7.0-alpha1",
"reactify": "^1.0.0",
"uuid": "^2.0.1",
"watch": "^0.13.0"
}
}