electron-updator 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # electron-updator
2
+
3
+ [![NPM version][npm-image]][npm-url]
4
+ [![CI][ci-image]][ci-url]
5
+ [![Test coverage][codecov-image]][codecov-url]
6
+ [![node version][node-image]][node-url]
7
+ [![npm download][download-image]][download-url]
8
+
9
+ [npm-image]: https://img.shields.io/npm/v/electron-updator.svg
10
+ [npm-url]: https://npmjs.org/package/electron-updator
11
+ [ci-image]: https://github.com/xudafeng/electron-updator/actions/workflows/ci.yml/badge.svg
12
+ [ci-url]: https://github.com/xudafeng/electron-updator/actions/workflows/ci.yml
13
+ [codecov-image]: https://img.shields.io/codecov/c/github/xudafeng/electron-updator.svg?logo=codecov
14
+ [codecov-url]: https://codecov.io/gh/xudafeng/electron-updator
15
+ [node-image]: https://img.shields.io/badge/node.js-%3E=_16-green.svg
16
+ [node-url]: http://nodejs.org/download/
17
+ [download-image]: https://img.shields.io/npm/dm/electron-updator.svg
18
+ [download-url]: https://npmjs.org/package/electron-updator
19
+
20
+ > electron-updator
21
+
22
+ ## Installment
23
+
24
+ ```bash
25
+ $ npm i electron-updator --save-dev
26
+ ```
27
+
28
+ ## License
29
+
30
+ The MIT License (MIT)
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ 'use strict';
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./lib/electron-updator');
@@ -0,0 +1 @@
1
+ 'use strict';
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "electron-updator",
3
+ "version": "0.1.0",
4
+ "description": "electron-updator",
5
+ "keywords": ["electron-updator"],
6
+ "bin": {
7
+ "electron-updator": "./bin/electron-updator.js"
8
+ },
9
+ "files": [
10
+ "bin/**/*.js",
11
+ "lib/**/*.js"
12
+ ],
13
+ "main": "index.js",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git://github.com/xudafeng/electron-updator.git"
17
+ },
18
+ "dependencies": {
19
+ },
20
+ "devDependencies": {
21
+ "eslint": "*",
22
+ "eslint-plugin-mocha": "^4.11.0",
23
+ "git-contributor": "1",
24
+ "husky": "*",
25
+ "mocha": "*",
26
+ "nyc": "*"
27
+ },
28
+ "scripts": {
29
+ "test": "nyc --reporter=lcov --reporter=text mocha",
30
+ "lint": "eslint . --fix",
31
+ "contributor": "git-contributor"
32
+ },
33
+ "husky": {
34
+ "hooks": {
35
+ "pre-commit": "npm run lint"
36
+ }
37
+ },
38
+ "license": "MIT"
39
+ }