This repository has been archived by the owner on Feb 9, 2018. It is now read-only.
forked from rdubigny/cozy-music
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 2.56 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
79
80
81
82
83
84
85
86
87
{
"name": "cozy-music",
"version": "0.5.1",
"description": "music description",
"license": "AGPL-3.0",
"cozy-type": "static",
"cozy-displayName": "Music",
"cozy-color": "#3BDA6C",
"icon-path": "app-icon.svg",
"author": "Cozy Cloud <[email protected]> (https://cozy.io/)",
"contributors": [
"flyingrub (http://flyingrub.me)"
],
"repository": {
"type": "git",
"url": "https://github.com/cozy-labs/cozy-music.git"
},
"dependencies": {
"async": "2.0.0-rc.2",
"backbone": "1.2.3",
"backbone.marionette": "2.4.7",
"backbone.radio": "1.0.2",
"backbone.subroute": "0.4.6",
"cozysdk-client": "0.0.7",
"jquery": "2.2.0",
"json-loader": "0.5.4",
"node-polyglot": "1.0.0",
"underscore": "1.8.3"
},
"devDependencies": {
"autoprefixer": "6.3.3",
"babel-core": "6.6.5",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"browser-sync": "2.11.1",
"browser-sync-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "1.1.1",
"css-loader": "0.23.1",
"css-mqpacker": "4.0.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"git-directory-deploy": "1.5.0",
"html-webpack-plugin": "2.10.0",
"lodash": "4.6.1",
"npm-run-all": "1.7.0",
"postcss-loader": "0.8.1",
"style-loader": "0.13.0",
"stylus": "0.52.4",
"stylus-loader": "2.3.1",
"svg-sprite-loader": "0.0.16",
"underscore-loader": "0.0.2",
"url-loader": "0.5.7",
"webpack": "1.12.14"
},
"scripts": {
"build": "env OPTIMIZE=true webpack",
"clean": "rm -rf public",
"copy:manifest": "install -m0644 package.json README.md LICENSE public",
"deploy": "git-directory-deploy --username music-autodeploy --email [email protected] --directory public/ --branch build --repo=https://[email protected]/cozy-labs/cozy-music.git",
"tx": "tx pull --all || true",
"postbuild": "npm run copy:manifest",
"prebuild": "npm-run-all clean tx",
"prewatch": "npm run clean",
"test": "true",
"watch": "webpack --display-modules --display-chunks --watch"
},
"cozy-permissions": {
"CozyInstance": {
"description": "Get the current locale."
},
"File": {
"description": "Acess music from files."
},
"Folder": {
"description": "Create the cozic folder to import old track."
},
"Track": {
"description": "Hear your track in your cozy."
},
"Playlist": {
"description": "Manage your playlist."
},
"Binary": {
"description": "Access your binary music files to stream them."
}
}
}