├── CHANGELOG.md ├── README.md └── package.json /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.0.0 (08/31/2017) 2 | 3 | - reserving npm name 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # electron-mobile 2 | 3 | > 📱a work in progress iOS/android compatible build target for electron 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "electron-mobile", 3 | "version": "0.0.0", 4 | "description": "a work in progress iOS/android compatible build target for electron", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/gabrielcsapo/electron-mobile.git" 12 | }, 13 | "keywords": [ 14 | "electron", 15 | "mobile", 16 | "javascript" 17 | ], 18 | "author": "Gabriel J. Csapo ", 19 | "license": "ISC", 20 | "bugs": { 21 | "url": "https://github.com/gabrielcsapo/electron-mobile/issues" 22 | }, 23 | "homepage": "https://github.com/gabrielcsapo/electron-mobile#readme" 24 | } 25 | --------------------------------------------------------------------------------