forked from electron-userland/electron-windows-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "electron-windows-store",
"version": "0.12.0",
"description": "Compile Electron Apps into Windows Store AppX packages",
"main": "lib/index.js",
"bin": {
"electron-windows-store": "bin/windowsstore.js"
},
"scripts": {
"test": "standard \"lib/*.js\" \"bin/**/*.js\" && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixrieseberg/electron-windows-store.git"
},
"keywords": [
"Electron",
"App",
"Windows",
"Store",
"Appx",
"UWP"
],
"engineStrict": true,
"engines": {
"node": ">=4.0.0"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixrieseberg/electron-windows-store/issues"
},
"homepage": "https://github.com/felixrieseberg/electron-windows-store#readme",
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"debug": "^2.6.3",
"flatten-packages": "^0.1.4",
"fs-extra": "^4.0.1",
"inquirer": "^3.2.3",
"lodash.defaults": "^4.2.0",
"lodash.merge": "^4.6.0",
"multiline": "^1.0.2",
"path-exists": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^3.5.3",
"mockery": "^2.1.0",
"standard": "^10.0.3"
}
}