-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
249 lines (249 loc) · 8.94 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
{
"name": "DataCurator",
"version": "1.2.9",
"author": "Matt Mulholland <[email protected]>",
"description": "Data Curator is a simple desktop CSV editor to help describe, validate and share usable open data",
"license": "MIT",
"main": "./dist/electron/main.js",
"repository": "https://github.com/qcif/data-curator.git",
"engines": {
"node": "^v14.17.6"
},
"scripts": {
"build": "node --trace-warnings .electron-vue/build.js && electron-builder",
"build:sign:win:code": "node .electron-vue/build.js && electron-builder --config.win.sign=signWinCode.js",
"sign:win:installer": "cross-env node ./signWinInstaller.js",
"build:sign:win:all": "cross-env yarn run build:sign:win:code && yarn run sign:win:installer",
"build:sign:mac:macappstore": "cross-env yarn run build -c.mac.target=mas && bash build/resignAndPackage.sh",
"build:post": "cross-env node ./postbuild.js",
"build:dir": "node .electron-vue/build.js && electron-builder --dir -c.mac.identity=null",
"build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js",
"clean": "cross-env BUILD_TARGET=cleanAll node .electron-vue/build.js",
"dev": "node --trace-warnings .electron-vue/dev-runner.js",
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-formatter-friendly src test",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-formatter-friendly --fix src test",
"pack": "yarn run pack:main && yarn run pack:renderer",
"release:predraft": "node .electron-vue/build.js && electron-builder build --publish onTagOrDraft",
"release:pre": "node .electron-vue/build.js && electron-builder build --publish always --releaseType prerelease",
"pack:main": "cross-env NODE_ENV=production webpack --progress --color --config .electron-vue/webpack.main.config.js",
"pack:renderer": "cross-env NODE_ENV=production webpack --progress --color --config .electron-vue/webpack.renderer.config.js",
"postinstall": "electron-builder install-app-deps",
"test": "(yarn run unit || yarn -v) && yarn run e2e:impl",
"unit": "yarn run clean && mkdir -p dist && karma start test/unit/karma.conf.js",
"e2e": "yarn run clean && yarn run pack && yarn run cucumber:postpack",
"e2e:all": "yarn run e2e test/features -f json:test/cucumber_report.json",
"e2e:impl": "yarn run e2e:all --tags @impl",
"cucumber:postpack": "cross-env BABEL_ENV=test nyc cucumber-js --require-module @babel/register",
"cucumber:postpack:dev": "cross-env BABEL_ENV=test cucumber-js --fail-fast --require-module @babel/register --tags @dev test/features",
"cucumber:postpack:fail-fast-impl": "cross-env BABEL_ENV=test nyc cucumber-js --fail-fast --require-module @babel/register --tags @impl test/features",
"cucumber:report": "node test/cucumber-report.js",
"cucumber:report:badge": "node test/postreport.js",
"unit:coverage": "cat test/unit/coverage/lcov.info | coveralls"
},
"build": {
"productName": "DataCurator",
"appId": "au.edu.qcif.datacurator",
"directories": {
"output": "build"
},
"files": [
"dist/electron/**/*"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icons/icon.icns"
},
"mas": {
"hardenedRuntime": false,
"provisioningProfile": "build/DataCuratorMacDistribution.provisionprofile",
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"gatekeeperAssess": false,
"asarUnpack": []
},
"win": {
"icon": "build/icons/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"appx": {
"publisherDisplayName": "Queensland Cyber Infrastructure Foundation Ltd",
"publisher": "CN=...",
"identityName": "DataCurator"
},
"nsis": {
"runAfterFinish": false
},
"linux": {
"icon": "build/icons",
"target": "AppImage"
}
},
"dependencies": {
"archiver": "^2.1.1",
"autosize": "^4.0.2",
"axios": "^0.21.1",
"bootstrap": "3.4.1",
"components-font-awesome": "^5.0.6",
"csv": "^2.0.0",
"csv-sniffer": "^0.1.1",
"datapackage": "~1.1.9",
"detect-newline": "^3.0.0",
"electron-settings": "^3.2.0",
"escape-regexp": "^0.0.1",
"etl": "^0.5.12",
"fs-extra": "~7.0.0",
"handsontable": "^3.0.0",
"imports-loader": "^0.8.0",
"lodash": "^4.17.11",
"markdown-it": "^8.4.1",
"moment": "^2.22.2",
"pikaday": "^1.6.1",
"request": "^2.81.0",
"rxjs": "^6.5.5",
"sifter": "^0.5.3",
"slug": "^0.9.1",
"sortablejs": "^1.6.0",
"spectron-fake-dialog": "^0.0.1",
"svgo": "^1.0.5",
"tableschema": "~1.12.2",
"tmp": "^0.0.33",
"unzipper": "^0.8.14",
"vee-validate": "^2.0.9",
"vue": "^2.5.17",
"vue-async-computed": "^3.3.1",
"vue-directive-tooltip": "^1.4.5",
"vue-electron": "^1.0.6",
"vue-good-table": "^2.15.3",
"vue-router": "^3.0.1",
"vue-rx": "^5.0.0",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"xlsx": "^0.13.0",
"yargs-parser": "^13.1.1",
"zeroclipboard": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime-corejs3": "^7.7.7",
"@vue/test-utils": "1.0.0-beta.28",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-rewire": "^1.2.0",
"cfonts": "2.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chalk": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"core-js": "^3.6.0",
"coveralls": "^3.1.0",
"cross-env": "^5.1.6",
"css-loader": "^3.4.0",
"cucumber": "^6.0.5",
"cucumber-html-reporter": "^4.0.2",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^12.0.0",
"electron-builder": "^22.10.5",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-formatter-friendly": "^6.0.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"exports-loader": "^0.7.0",
"file-loader": "^6.2.0",
"flush-promises": "^1.0.0",
"html-webpack-include-assets-plugin": "^2.0.0",
"html-webpack-plugin": "^5.3.1",
"json-loader": "^0.5.4",
"jsonfile": "^4.0.0",
"karma": "^6.3.2",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-electron": "^6.3.4",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^1.5.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"multispinner": "^0.2.1",
"node-gyp": "^3.6.2",
"node-loader": "^0.6.0",
"nyc": "^15.1.0",
"readme-badger": "^0.3.0",
"regenerator-runtime": "^0.13.3",
"replace-in-file": "^3.4.0",
"require-dir": "^1.0.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.6.0",
"sinon-test": "^3.0.1",
"spectron": "^14",
"spectron-fake-menu": "^0.0.1",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.9.2",
"vue-server-renderer": "^2.5.17",
"vue-style-loader": "^4.1.2",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.24.2",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.2",
"webpack-shell-plugin": "^0.5.0"
}
}