-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
87 lines (87 loc) · 2.54 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": "gmusic.js",
"description": "Browser-side JS library for controlling Google Music",
"version": "6.1.5",
"homepage": "https://github.com/gmusic-utils/gmusic.js",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/gmusic-utils/gmusic.js.git"
},
"bugs": {
"url": "https://github.com/gmusic-utils/gmusic.js/issues"
},
"license": "Unlicense",
"main": "dist/gmusic.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"build": "gulp build",
"lint": "eslint src",
"pretest": "npm run build",
"prepublish": "npm run build",
"test": "npm run verify-webdriver && mocha --timeout 10000 --reporter dot && npm run lint",
"test-browserstack": "npm run pretest && mocha --timeout 30000 --reporter dot && npm run lint",
"test-windows": "npm run pretest && mocha --timeout 30000 --reporter dot && npm run lint",
"verify-webdriver": "curl --silent http://localhost:4444/ > /dev/null || (echo \"Selenium server wasn't started. Please start it via \\`npm run webdriver-manager-start\\`.\" 1>&2 && exit 1)",
"webdriver-manager-start": "webdriver-manager start",
"webdriver-manager-update": "webdriver-manager update --standalone"
},
"devDependencies": {
"async": "~0.9.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "~1.10.0",
"eslint": "^3.1.0",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.12.0",
"foundry": "~4.3.2",
"foundry-release-bower": "~2.1.0",
"foundry-release-git": "~2.0.2",
"foundry-release-npm": "~2.0.2",
"function-to-string": "~0.2.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",
"mocha": "~1.11.0",
"protractor": "~1.5.0",
"wd": "~0.3.11"
},
"keywords": [
"google music",
"google play",
"browser"
],
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-class-properties"
]
},
"foundry": {
"releaseCommands": [
{
"type": "customCommand",
"updateFiles": "npm run build && git add dist"
},
{
"type": "customCommand",
"updateFiles": "node bin/verify-changelog-updated.js"
},
"foundry-release-git",
"foundry-release-npm",
"foundry-release-bower"
]
}
}