forked from stepkagr/yandex-music-fisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.31 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
{
"name": "yandex-music-fisher",
"version": "2.1.4",
"private": true,
"scripts": {
"build": "npm run build:chrome && npm run build:firefox && npm run build:opera && npm run build:edge",
"build:chrome": "webpack --config tools/webpack.config.js --env.platform=chrome && node tools/post_build chrome",
"build:firefox": "webpack --config tools/webpack.config.js --env.platform=firefox && node tools/post_build firefox",
"build:opera": "webpack --config tools/webpack.config.js --env.platform=opera && node tools/post_build opera",
"build:edge": "webpack --config tools/webpack.config.js --env.platform=edge && node tools/post_build edge",
"lint": "eslint -c tools/.eslintrc.js src tools",
"test": "npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run build && npm run create-github-release && git add package.json",
"postversion": "git push && git push --tags",
"create-github-release": "node tools/create_github_release",
"show-download-stats": "node tools/show_download_stats",
"cover-sizes": "node tools/cover_sizes"
},
"devDependencies": {
"blueimp-md5": "^2.10.0",
"browser-id3-writer": "^4.0.0",
"copy-webpack-plugin": "^4.2.0",
"eslint": "^4.11.0",
"jszip": "^3.1.5",
"uritemplate": "^0.3.4",
"webpack": "^3.8.1"
}
}