You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2018/09/30 19:14:58 UTC

[cordova-paramedic] 01/01: most rudimentary package.json for plugins and plugin tests possible

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch janpio-add_plugin_package.json
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git

commit 2b24b0ac527af19d8a06bd10cbb7f67ce4278c2c
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Sun Sep 30 21:14:20 2018 +0200

    most rudimentary package.json for plugins and plugin tests possible
---
 spec/build-fail-plugin/package.json     | 11 +++++++++++
 spec/build-success-plugin/package.json  | 11 +++++++++++
 spec/sh-read-input-plugin/package.json  | 11 +++++++++++
 spec/testable-plugin/package.json       | 14 ++++++++++++++
 spec/testable-plugin/tests/package.json | 11 +++++++++++
 5 files changed, 58 insertions(+)

diff --git a/spec/build-fail-plugin/package.json b/spec/build-fail-plugin/package.json
new file mode 100644
index 0000000..ba1b835
--- /dev/null
+++ b/spec/build-fail-plugin/package.json
@@ -0,0 +1,11 @@
+{
+  "name": "build-fail-plugin",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": ""
+}
diff --git a/spec/build-success-plugin/package.json b/spec/build-success-plugin/package.json
new file mode 100644
index 0000000..c4a02ff
--- /dev/null
+++ b/spec/build-success-plugin/package.json
@@ -0,0 +1,11 @@
+{
+  "name": "build-success-plugin",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": ""
+}
diff --git a/spec/sh-read-input-plugin/package.json b/spec/sh-read-input-plugin/package.json
new file mode 100644
index 0000000..3638c88
--- /dev/null
+++ b/spec/sh-read-input-plugin/package.json
@@ -0,0 +1,11 @@
+{
+  "name": "sh-read-input-plugin",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": ""
+}
diff --git a/spec/testable-plugin/package.json b/spec/testable-plugin/package.json
new file mode 100644
index 0000000..47e54fb
--- /dev/null
+++ b/spec/testable-plugin/package.json
@@ -0,0 +1,14 @@
+{
+  "name": "testable-plugin",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "directories": {
+    "test": "tests"
+  },
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": ""
+}
diff --git a/spec/testable-plugin/tests/package.json b/spec/testable-plugin/tests/package.json
new file mode 100644
index 0000000..760fdce
--- /dev/null
+++ b/spec/testable-plugin/tests/package.json
@@ -0,0 +1,11 @@
+{
+  "name": "tests",
+  "version": "1.0.0",
+  "description": "",
+  "main": "tests.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": ""
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org