-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 948 Bytes
/
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
{
"name": "cordova-plugin-contacts-mock",
"version": "1.0.1",
"description": "mock cordova contacts plugin for web-based development",
"repository": "meirotstein/cordova-plugin-contacts-mock",
"license": "MIT",
"scripts": {
"test": "./node_modules/jasmine-node/bin/jasmine-node spec"
},
"keywords": [
"cordova",
"contacts",
"mock"
],
"main": "src/js/index.js",
"author": {
"name" : "Meir Rotstein",
"email" : "meir@rotstein.co.il",
"url" : "http://www.rotstein.co.il"
},
"license": "ISC",
"browser": {
"cordova/argscheck": "./lib/argscheck.js",
"cordova/utils": "./lib/utils.js",
"cordova/exec": "./src/js/exec.js"
},
"devDependencies": {
"cordova-plugin-contacts": "https://github.com/apache/cordova-plugin-contacts.git",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-rename": "^1.2.2",
"gulp-watch": "^4.3.11",
"jasmine-node": "^1.14.5"
}
}