-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.01 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
106
107
108
109
{
"name": "iweb",
"version": "1.0.0",
"description": "iWeb is a visual web-site generator",
"main": "index.html",
"window": {
"title": "iWeb",
"icon": "iWeb-Main.png",
"frame": false
},
"webview": {
"partitions": [
{
"name": "trusted",
"accessible_resources": [
"<all_urls>"
]
}
]
},
"build": {
"appId": "io.github.tyrealgray.iweb",
"nwVersion": "0.30.1",
"packed": true,
"targets": [
"zip"
],
"strippedProperties": [
"build"
]
},
"scripts": {
"init": "npm i && node ./script/init.js",
"build-client": "webpack --config config/webpack.client.js",
"build-mac": "npm run build-prod && npm run dist-mac",
"build-prod": "webpack --config config/webpack.prod.js",
"build-win": "npm run build-prod && npm run dist-win",
"dev": "webpack-dev-server --open --config config/webpack.dev.js",
"dist-mac": "build --tasks mac-x64 .",
"dist-win": "build --tasks win-x64 .",
"jsdoc": "./node_modules/.bin/jsdoc src -c ./docs/jsdoc.json -t ./node_modules/@pixi/jsdoc-template -R README.md -r -d docs",
"flow": "flow",
"lint": "eslint --ext .js src",
"lint-fix": "eslint --ext .js src --fix",
"run-mac": "./nwjs-v0.30.1-osx-x64/nwjs.app/Contents/MacOS/nwjs .",
"run-win": "nwjs-v0.30.1-win-x64\\nw.exe .",
"start-mac": "npm run build-client && npm run run-mac",
"start-win": "npm run build-client && npm run run-win",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TyrealGray/iWeb.git"
},
"keywords": [
"nw.js",
"javascript"
],
"prettier": {
"useTabs": true,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"parser": "flow"
},
"author": "Tyreal Gray",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-flow": "7.0.0",
"@babel/register": "7.0.0",
"@pixi/jsdoc-template": "2.4.0",
"babel-eslint": "9.0.0",
"babel-loader": "8.0.4",
"circular-dependency-plugin": "5.0.2",
"cli-spinner": "0.2.8",
"core-js": "2.5.7",
"download": "7.0.0",
"eslint": "4.18.2",
"flow-bin": "0.74.0",
"html-es6-template-loader": "1.0.5",
"jsdoc": "3.5.5",
"jsdoc-babel": "0.5.0",
"nwjs-builder-phoenix": "1.14.6",
"prettier": "1.14.2",
"webpack": "4.22.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.11",
"webpack-merge": "4.1.2"
},
"dependencies": {
"bootstrap": "4.3.1",
"jquery": "3.5.0",
"popper.js": "1.12.9"
},
"optionalDependencies": {
"7zip-bin-mac": "1.0.1"
},
"bugs": {
"url": "https://github.com/TyrealGray/iWeb/issues"
},
"homepage": "https://github.com/TyrealGray/iWeb#readme"
}