-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1512 from friederbluemle/package-json
Format and standardize package.json files
- Loading branch information
Showing
18 changed files
with
411 additions
and
660 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,53 +4,38 @@ | |
"description": "Electrode Native API generator", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"homepage": "http://www.electrode.io", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/electrode-io/electrode-native.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"scripts": { | ||
"build": "ern-typescript", | ||
"test": "ern-mocha", | ||
"coverage": "ern-nyc", | ||
"instrument-dist": "ern-instrument-dist", | ||
"prepublish": "npm run build", | ||
"instrument-dist": "ern-instrument-dist" | ||
"test": "ern-mocha" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/electrode-io/electrode-native.git" | ||
}, | ||
"keywords": [ | ||
"android", | ||
"api", | ||
"electrode", | ||
"ern", | ||
"react-native", | ||
"api", | ||
"ios", | ||
"node", | ||
"android", | ||
"ios" | ||
"react-native" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Benoit Lemaire", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Bharath Marulasiddappa", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Deepu Ganapathiyadan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Krunal Shah", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Weijie Li", | ||
"email": "[email protected]" | ||
} | ||
"Benoit Lemaire <[email protected]>", | ||
"Bharath Marulasiddappa <[email protected]>", | ||
"Deepu Ganapathiyadan <[email protected]>", | ||
"Krunal Shah <[email protected]>", | ||
"Weijie Li <[email protected]>" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"homepage": "http://www.electrode.io", | ||
"dependencies": { | ||
"ern-core": "1000.0.0", | ||
"fs-extra": "^8.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,55 +4,41 @@ | |
"description": "Electrode Native API implementation projects generator", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"homepage": "http://www.electrode.io", | ||
"scripts": { | ||
"build": "ern-typescript", | ||
"coverage": "ern-nyc", | ||
"instrument-dist": "ern-instrument-dist", | ||
"prepublish": "yarn run build", | ||
"test": "ern-mocha" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/electrode-io/electrode-native.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"keywords": [ | ||
"android", | ||
"api", | ||
"electrode", | ||
"ern", | ||
"react-native", | ||
"generator", | ||
"api", | ||
"ios", | ||
"node", | ||
"android", | ||
"ios" | ||
"react-native" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Benoit Lemaire", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Bharath Marulasiddappa", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Deepu Ganapathiyadan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Krunal Shah", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Weijie Li", | ||
"email": "[email protected]" | ||
} | ||
"Benoit Lemaire <[email protected]>", | ||
"Bharath Marulasiddappa <[email protected]>", | ||
"Deepu Ganapathiyadan <[email protected]>", | ||
"Krunal Shah <[email protected]>", | ||
"Weijie Li <[email protected]>" | ||
], | ||
"scripts": { | ||
"test": "ern-mocha", | ||
"build": "ern-typescript", | ||
"coverage": "ern-nyc", | ||
"prepublish": "yarn run build", | ||
"instrument-dist": "ern-instrument-dist" | ||
}, | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"homepage": "http://www.electrode.io", | ||
"dependencies": { | ||
"@yarnpkg/lockfile": "^1.0.2", | ||
"chalk": "^2.4.1", | ||
"ern-api-gen": "1000.0.0", | ||
"ern-core": "1000.0.0", | ||
|
@@ -61,8 +47,7 @@ | |
"mustache": "^2.3.1", | ||
"semver": "5.5.0", | ||
"xcode": "^1.0.0", | ||
"xcode-ern": "^1.0.12", | ||
"@yarnpkg/lockfile": "^1.0.2" | ||
"xcode-ern": "^1.0.12" | ||
}, | ||
"devDependencies": { | ||
"ern-util-dev": "1000.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,59 +4,44 @@ | |
"description": "Electrode Native Cauldron Client", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"homepage": "http://www.electrode.io", | ||
"scripts": { | ||
"build": "ern-typescript", | ||
"coverage": "ern-nyc", | ||
"instrument-dist": "ern-instrument-dist", | ||
"prepublish": "yarn run build", | ||
"test": "ern-mocha" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/electrode-io/electrode-native.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"keywords": [ | ||
"android", | ||
"cauldron", | ||
"electrode", | ||
"ern", | ||
"react-native", | ||
"cauldron", | ||
"ios", | ||
"node", | ||
"android", | ||
"ios" | ||
"react-native" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Benoit Lemaire", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Bharath Marulasiddappa", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Deepu Ganapathiyadan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Krunal Shah", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Weijie Li", | ||
"email": "[email protected]" | ||
} | ||
"Benoit Lemaire <[email protected]>", | ||
"Bharath Marulasiddappa <[email protected]>", | ||
"Deepu Ganapathiyadan <[email protected]>", | ||
"Krunal Shah <[email protected]>", | ||
"Weijie Li <[email protected]>" | ||
], | ||
"scripts": { | ||
"test": "ern-mocha", | ||
"build": "ern-typescript", | ||
"coverage": "ern-nyc", | ||
"prepublish": "yarn run build", | ||
"instrument-dist": "ern-instrument-dist" | ||
}, | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"homepage": "http://www.electrode.io", | ||
"dependencies": { | ||
"@hapi/joi": "^15.0.1", | ||
"ern-core": "1000.0.0", | ||
"fs-extra": "^8.1.0", | ||
"lodash": "^4.17.14", | ||
"semver": "^5.5.0", | ||
"ern-core": "1000.0.0", | ||
"uuid": "^3.3.2" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,55 +4,43 @@ | |
"description": "Electrode Native Composite Generator", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"homepage": "http://www.electrode.io", | ||
"scripts": { | ||
"build": "ern-typescript", | ||
"coverage": "ern-nyc", | ||
"instrument-dist": "ern-instrument-dist", | ||
"prepublish": "yarn run build", | ||
"test": "ern-mocha" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/electrode-io/electrode-native.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"keywords": [ | ||
"composite", | ||
"electrode", | ||
"ern", | ||
"react-native", | ||
"generator", | ||
"composite", | ||
"node" | ||
"node", | ||
"react-native" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Benoit Lemaire", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Bharath Marulasiddappa", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Deepu Ganapathiyadan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Krunal Shah", | ||
"email": "[email protected]" | ||
} | ||
"Benoit Lemaire <[email protected]>", | ||
"Bharath Marulasiddappa <[email protected]>", | ||
"Deepu Ganapathiyadan <[email protected]>", | ||
"Krunal Shah <[email protected]>" | ||
], | ||
"scripts": { | ||
"build": "ern-typescript", | ||
"test": "ern-mocha", | ||
"coverage": "ern-nyc", | ||
"prepublish": "yarn run build", | ||
"instrument-dist": "ern-instrument-dist" | ||
}, | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/electrode-io/electrode-native/issues" | ||
}, | ||
"homepage": "http://www.electrode.io", | ||
"dependencies": { | ||
"ern-core": "1000.0.0", | ||
"fs-extra": "^8.1.0", | ||
"fs-readdir-recursive": "^1.1.0", | ||
"mustache": "^2.3.1", | ||
"uuid": "^3.3.2", | ||
"semver": "^5.5.0" | ||
"semver": "^5.5.0", | ||
"uuid": "^3.3.2" | ||
}, | ||
"devDependencies": { | ||
"ern-util-dev": "1000.0.0" | ||
|
Oops, something went wrong.