-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "electron-windows-store",
"version": "2.0.1",
"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",
"semantic-release": "semantic-release",
"commitlint": "commitlint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixrieseberg/electron-windows-store.git"
},
"keywords": [
"Electron",
"App",
"Windows",
"Store",
"Appx",
"UWP"
],
"engineStrict": true,
"engines": {
"node": ">=6.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.4.1",
"commander": "^2.19.0",
"debug": "^4.1.0",
"fs-extra": "^7.0.0",
"inquirer": "^6.2.0",
"lodash.defaults": "^4.2.0",
"lodash.merge": "^4.6.1",
"multiline": "^2.0.0",
"path-exists": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"semantic-release": "^15.10.7",
"standard": "^12.0.1"
}
}