This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
{
"name": "cloudant-sync",
"version": "0.4.2-SNAPSHOT",
"description": "Cloudant Sync Cordova Plugin",
"cordova": {
"id": "com.cloudant.sync",
"platforms": [
"ios",
"android"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudant/sync-cordova-plugin.git"
},
"keywords": [
"cloudant",
"sync",
"cloudant-sync",
"cloudantSync",
"ecosystem:cordova",
"cordova-ios",
"cordova-android"
],
"author": "IBM Cloudant",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cloudant/sync-cordova-plugin/issues"
},
"homepage": "https://github.com/cloudant/sync-cordova-plugin#readme",
"engines": {
"cordovaDependencies": {
"0.3.0": {
"cordova-android": ">=5.0.0",
"cordova-ios": ">=4.0.0"
}
}
},
"dependencies": {
"lodash.isempty": "~4.4.0",
"lodash.isfunction": "~3.0.8",
"lodash.isobject": "~3.0.2",
"lodash.isstring": "~4.0.1",
"q": "~1.4.1"
},
"devDependencies": {
"cordova": "^7.1.0",
"cordova-paramedic": "~0.5.0",
"jscs": "~3.0.7"
},
"scripts": {
"cpm": "cordova-paramedic --plugin . --verbose --timeout 1800000 ",
"compile": "npm run compile-platform -- 'ios' && npm run compile-platform -- 'android'",
"compile-platform": "npm run cpm -- --justbuild --platform ",
"test-platform": "npm run cpm -- --platform ",
"test": "npm run test-platform -- 'ios' && npm run test-platform -- 'android'",
"lint": "jscs ./www/*.js"
}
}