-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "gmusic-ui.js",
"description": "Browser-side JS library for controlling Google Music through UI manipulation",
"version": "2.2.5",
"homepage": "https://github.com/gmusic-utils/gmusic-ui.js#readme",
"author": {
"name": "Samuel Attard",
"email": "[email protected]",
"url": "samuelattard.com"
},
"main": "dist/gmusic-ui.js",
"scripts": {
"build": "gulp build",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmusic-utils/gmusic-ui.js.git"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/gmusic-utils/gmusic-ui.js/issues"
},
"dependencies": {
"gmusic.js": "^6.1.5"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.3.13",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-browserify": "^0.5.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.4"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-class-properties"
]
}
}