-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "cordova-plugin-example-isprime",
"description": "Checks if a number is prime, and if not, returns the corresponding factors. Used for PhoneGap Day EU 2017 'Creating Modern PhoneGap Plugins' workshop; not intended for production use (there are better ways to find primes!)",
"version": "1.0.1",
"homepage": "https://github.com/kerrishotts/cordova-plugin-example-isprime",
"repository": {
"type": "git",
"url": "https://github.com/kerrishotts/cordova-plugin-example-isprime.git"
},
"bugs": {
"url": "https://github.com/kerrishotts/cordova-plugin-example-isprime/issues"
},
"cordova": {
"id": "cordova-plugin-example-isprime",
"platforms": [
"ios",
"android",
"windows",
"browser"
]
},
"keywords": [
"ecosystem:cordova",
"ecosystem:phonegap",
"cordova",
"phonegap",
"pgday",
"eu",
"2017",
"example",
"prime"
],
"engines": {
"cordova": ">=6.0.0"
},
"author": "Kerri Shotts",
"license": "MIT",
"scripts": {
"lint": "eslint **/*.js",
"cordova-paramedic": "cordova-paramedic",
"test:android": "cordova-paramedic --cleanUpAfterRun --verbose --platform android --plugin .",
"test:browser": "cordova-paramedic --cleanUpAfterRun --verbose --platform browser --plugin .",
"test:ios": "cordova-paramedic --cleanUpAfterRun --verbose --platform ios --plugin .",
"test:windows": "cordova-paramedic --config .paramedic.windows.config.js"
},
"devDependencies": {
"cordova-paramedic": "git+https://github.com/apache/cordova-paramedic.git",
"eslint": "^3.18.0"
}
}