-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "wybm",
"version": "1.2.2",
"codename": "(G)I-DLE",
"description": "Extract and cut youtube webms",
"scripts": {
"start": "webpack --watch",
"dev": "nw dist/app",
"test": "eslint .",
"clean": "rm -rf dist",
"clean-app": "rm -rf dist/app",
"build-app": "npm run clean-app && NODE_ENV=production webpack",
"release-win32": "PLATFORM=win32 npm run build-app && make win32",
"release-mac64": "PLATFORM=mac64 npm run build-app && make mac64",
"release-lin64": "PLATFORM=lin64 npm run build-app && make lin64",
"release": "npm run clean && npm run release-win32 && npm run release-mac64 && npm run release-lin64"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/wybm.git"
},
"keywords": [
"webm",
"youtube",
"gui"
],
"author": "Kagami Hiiragi",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Kagami/wybm/issues"
},
"homepage": "https://github.com/Kagami/wybm#readme",
"dependencies": {
"react": "^0.14.5",
"react-dom": "^0.14.5",
"request": "^2.88.0",
"tmp": "0.0.28",
"which": "^1.2.1",
"xregexp": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.3.13",
"ejs": "^2.6.1",
"ejs-html-loader": "^4.0.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^3.14.0",
"file-loader": "^4.1.0",
"nw": "0.38.1-sdk",
"raw-loader": "^3.1.0",
"string-replace-loader": "^2.2.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
}
}