forked from j3k0/cordova-plugin-openwith
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.75 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cc.fovea.cordova.openwith",
"version": "2.0.0",
"description": "Cordova \"Open With\" plugin for iOS and Android",
"cordova": {
"id": "cc.fovea.cordova.openwith",
"platforms": [
"android",
"ios"
]
},
"repository": {
"type": "git",
"url": "https://github.com/j3k0/cordova-plugin-openwith.git"
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova",
"phonegap",
"openwith",
"ios",
"android"
],
"scripts": {
"test": "npm run js-lint && npm run js-test && npm run java-lint",
"install-dev": "./install-pmd",
"java-lint": "pmd -minimumpriority 4 -d src/android -R java-basic,java-android,java-braces,java-codesize,java-empty,java-finalizers,java-imports,java-naming,java-optimizations,java-strictexception,java-strings,java-sunsecure,java-typeresolution,java-unnecessary,java-unusedcode -f textcolor",
"objc-lint": "true",
"js-lint": "eslint www",
"js-test": "mocha www",
"js-lint-watch": "esw --watch www",
"js-test-watch": "mocha --watch www"
},
"author": "Jean-Christophe Hoelt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/j3k0/cordova-plugin-openwith/issues"
},
"homepage": "https://github.com/j3k0/cordova-plugin-openwith",
"# Dependencies required by the hooks": "",
"dependencies": {
"file-system": "^2.2.2",
"path": "^0.12.7",
"plist": "^2.1.0",
"xcode": "git+https://github.com/apache/cordova-node-xcode.git"
},
"# Dependencies required to run tests": "",
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.1.2",
"expect.js": "^0.3.1",
"mocha": "^3.5.3"
},
"# White list the files to pack by npm publish": "",
"files": [
"src/android/cc/fovea/openwith/ByteStreams.java",
"src/android/cc/fovea/openwith/OpenWithPlugin.java",
"src/android/cc/fovea/openwith/PluginResultSender.java",
"src/android/cc/fovea/openwith/Serializer.java",
"src/ios/OpenWithPlugin.m",
"src/ios/ShareExtension/MainInterface.storyboard",
"src/ios/ShareExtension/ShareExtension-Entitlements.plist",
"src/ios/ShareExtension/ShareExtension-Info.plist",
"src/ios/ShareExtension/ShareViewController.h",
"src/ios/ShareExtension/ShareViewController.m",
"www/openwith.js",
"www/test-openwith.js",
"hooks/iosAddTarget.js",
"hooks/iosRemoveTarget.js",
"hooks/iosCopyShareExtension.js",
"hooks/npmInstall.js",
"install-pmd",
"plugin.xml",
"LICENSE",
"README.md",
"package.json"
]
}