-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.61 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
88
89
{
"name": "ytmusic.js",
"description": "Browser-side JS library for controlling YouTube Music",
"version": "6.2.3",
"homepage": "https://github.com/gmusic-utils/ytmusic.js",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/gmusic-utils/ytmusic.js.git"
},
"bugs": {
"url": "https://github.com/gmusic-utils/ytmusic.js/issues"
},
"license": "Unlicense",
"main": "dist/ytmusic.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": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"async": "~0.9.0",
"babel-eslint": "^6.1.2",
"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": "~4.0.2",
"gulp-babel": "~8.0.0",
"gulp-browserify": "^0.5.1",
"gulp-rename": "~2.0.0",
"gulp-uglify": "~3.0.2",
"mocha": "~1.11.0",
"protractor": "~1.5.0",
"wd": "~0.3.11"
},
"keywords": [
"google music",
"google play",
"browser"
],
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
"@babel/plugin-proposal-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"
]
},
"dependencies": {}
}