forked from wojtkowiak/meteor-desktop
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
131 lines (131 loc) · 4.15 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
{
"name": "@sharekey/meteor-desktop",
"version": "2.6.3",
"bin": {
"meteor-desktop": "dist/bin/cli.js"
},
"engines": {
"node": ">=4.0.0"
},
"description": "Build a Meteor's desktop client with hot code push.",
"main": "dist/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha -t 10000 -r ./tests/helpers/clear.js \"tests/+(unit|functional)/**/*.test.js\"",
"test-integration": "mocha -t 10000 -r reify \"tests/+(integration)/**/*.test.js\"",
"test-watch": "mocha -r ./tests/helpers/clear.js --compilers js:@babel/register \"tests/+(unit|functional)/**/*.test.js\" --watch",
"lint": "eslint lib plugins scaffold skeleton tests",
"prepare-integration-tests": "node tests/integration/prepare.js",
"coverage-html": "nyc report --reporter=lcov",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"version": "node dist/scripts/propagateVersion.js && git add plugins",
"postinstall": "node dist/scripts/addToScripts || echo",
"publish-plugins": "(cls || reset) && cd plugins/bundler && (meteor publish [email protected]) && cd ../watcher && (meteor publish [email protected])",
"prepublish": "npm run build || echo",
"publish-all": "npm run publish-plugins && npm publish",
"build": "babel lib --out-dir dist --source-maps inline --copy-files",
"build-watch": "babel lib --watch --out-dir dist --source-maps inline --copy-files",
"develop": "npm-run-all --parallel build-watch test-watch",
"generate-docs": "jsdoc2md skeleton/preload.js > docs/api/desktop.md && jsdoc2md skeleton/modules/module.js > docs/api/module.md",
"update-locks": "(rmdir /S /Q node_modules || rm -rf node_modules || echo) && yarn && (rmdir /S /Q node_modules || rm -rf node_modules) && npm i"
},
"author": "Sharekey <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/register": "7.21.0",
"axios": "^1.4.0",
"babel-plugin-istanbul": "^5.2.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"codecov": "1.0.1",
"connect": "3.7.0",
"connect-modrewrite": "0.10.2",
"coveralls": "3.0.5",
"cross-env": "3.2.4",
"dirty-chai": "1.2.2",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.27.5",
"find-port": "2.0.1",
"fs-extra": "4.0.3",
"fs-plus": "2.10.1",
"import-fresh": "2.0.0",
"jsdoc-to-markdown": "5.0.3",
"mime": "2.6.0",
"mocha": "2.5.3",
"mockery": "2.1.0",
"npm-run-all": "4.0.1",
"nyc": "15.0.0",
"proxyquire": "1.8.0",
"queue": "6.0.1",
"reify": "0.20.12",
"rewire": "3.0.2",
"run-sequence": "1.2.2",
"semistandard": "^16.0.1",
"send": "0.18.0",
"serve-static": "1.13.2",
"server-destroy": "1.0.1",
"sha1-file": "1.0.4",
"sinon": "2.4.1",
"sinon-chai": "2.14.0",
"spectron": "8.0.0",
"temp-dir": "2.0.0",
"watch": "1.0.2"
},
"dependencies": {
"@babel/core": "7.18.13",
"@babel/preset-env": "7.13.8",
"@babel/runtime": "7.18.9",
"@electron/asar": "3.2.3",
"cacache": "17.0.5",
"commander": "2.20.3",
"cross-spawn": "5.0.1",
"del": "2.2.2",
"install-local": "0.6.2",
"isbinaryfile": "3.0.3",
"lodash": "4.17.21",
"md5": "2.2.1",
"node-fetch": "2.6.9",
"regenerator-runtime": "0.12.1",
"rimraf": "2.6.3",
"semver": "5.7.2",
"shelljs": "0.8.5",
"single-line-log": "1.1.2",
"terser": "4.8.1"
},
"peerDependencies": {
"app-builder-lib": "*",
"electron-builder": "*",
"electron-packager": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/sharekey/meteor-desktop"
},
"keywords": [
"electron",
"meteor",
"packager",
"desktop"
],
"nyc": {
"exclude": [
".reify-cache",
"dist",
"node_modules",
"plugins",
"tests",
"scaffold",
"lib",
"devEnvSetup.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"all": true
},
"homepage": "https://github.com/sharekey/meteor-desktop"
}