-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
105 lines (105 loc) · 3.21 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "record-desktop",
"version": "0.5.9",
"description": "Record gifs and take screenshots on linux, built with electron.",
"main": "src/dist/main.js",
"scripts": {
"start": "NODE_ENV=development electron ./src/dist/main.js",
"test": "ava 'src/**/*.spec.js'",
"test:watch": "nodemon --exec ava",
"prebuild": "rm -rf src/dist && mkdir src/dist",
"build": "npm-run-all --parallel build:electron build:frontend",
"build:watch": "npm-run-all --parallel build:electron:watch build:frontend:watch",
"build:electron": "babel -d src/dist src/main",
"build:electron:watch": "babel --watch -d src/dist src/main",
"build:frontend": "NODE_ENV=production webpack",
"build:frontend:watch": "webpack-dev-server",
"precommit": "npm run lint",
"prepublish": "npm run build",
"electron": "NODE_ENV=development electron ./dist/main.js",
"lint": "eslint 'src/main/**/*.js' 'src/frontend/**/*.js'",
"build:electron-pkg": "npm run build && rm -rf dist-pkg && electron-packager . record-desktop --platform linux --arch x64 --out dist-pkg/",
"build:electron-deb": "npm run build:electron-pkg && electron-installer-debian --src dist-pkg/record-desktop-linux-x64/ --dest dist-pkg/installers/ --arch amd64"
},
"bin": {
"record-desktop": "app.js"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ewnd9/record-desktop.git"
},
"keywords": [
"gif",
"electron",
"linux"
],
"files": [
"src",
"app.js",
"cat.sh"
],
"author": "ewnd9 <[email protected]>",
"license": "MIT",
"resolutions": {
"electron/**/sumchecker": "2.0.2"
},
"dependencies": {
"configstore": "^1.4.0",
"electron": "^1.6.11",
"electron-contextmenu-middleware": "^1.0.1",
"electron-image-menu": "^2.0.0",
"electron-input-menu": "^2.1.0",
"electron-localshortcut": "^1.1.1",
"electron-save-file": "^1.0.2",
"globby": "^4.0.0",
"imgur": "^0.1.7",
"lodash": "^4.5.0",
"mkdirp": "^0.5.1",
"node-notifier": "^4.5.0",
"pify": "^2.3.0",
"pretty-bytes": "^3.0.1",
"whereis": "^0.4.0",
"winston": "^2.1.1"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-lodash": "^1.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bootstrap": "^3.3.6",
"css-loader": "^0.23.1",
"electron-installer-debian": "0.4.0",
"electron-packager": "8.5.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.16.1",
"file-loader": "^0.8.5",
"husky": "^0.13.1",
"json-loader": "^0.5.4",
"nodemon": "^1.8.1",
"npm-run-all": "^1.4.0",
"proxyquire": "^1.7.11",
"react": "^0.14.6",
"react-component-gallery": "^1.2.1",
"react-dom": "^0.14.6",
"react-router": "^2.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1",
"webpack-target-electron-renderer": "^0.4.0",
"x11": "^2.0.5"
}
}