forked from JaneaSystems/nodejs-mobile-samples
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 744 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 744 Bytes
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
{
"name": "com.example.usenativemodules",
"displayName": "UseNativeModules",
"version": "1.0.0",
"description": "A sample nodejs-mobile-cordova application that uses native modules.",
"main": "index.js",
"scripts": {
"prepare-nodejs": "cd www/nodejs-project && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Janea Systems Inc.",
"license": "MIT",
"dependencies": {
"cordova-android": "^7.1.0",
"cordova-ios": "^4.5.4",
"cordova-plugin-whitelist": "^1.3.3",
"nodejs-mobile-cordova": "0.3.0"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"nodejs-mobile-cordova": {}
},
"platforms": [
"android",
"ios"
]
}
}