-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "oryoki",
"version": "0.2.2",
"productName": "Oryoki",
"description": "A web browser with a thin interface.",
"repository": {
"type": "git",
"url": "https://github.com/thmsbfft/oryoki.git"
},
"main": "main.js",
"scripts": {
"app": "electron app",
"dev": "webpack -w",
"build": "NODE_ENV='production' webpack -p && cd app && npm i",
"package": "npm run build && electron-packager app --overwrite --prune --out=build --platform=darwin --arch=x64 --icon=icon.icns && npm run clean",
"test": "standard --fix",
"clean": "rm -rf app/node_modules && rm -rf app/dist",
"prepush": "npm test"
},
"dependencies": {
"png-chunk-text": "^1.0.0",
"png-chunks-encode": "^1.0.0",
"png-chunks-extract": "^1.0.0",
"request": "^2.83.0",
"uuid": "^3.2.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.9",
"electron": "^1.8.2",
"electron-packager": "latest",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.11.0"
},
"bugs": {
"url": "https://github.com/thmsbfft/oryoki/issues"
},
"homepage": "http://oryoki.io",
"license": "MIT",
"author": "Thomas Buffet"
}