forked from nparashuram/cordova-plugin-browsersync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "cordova-plugin-browsersync",
"id": "cordova-plugin-browsersync",
"version": "0.1.6",
"description": "Cordova Plugin to integrate browser-sync in the workflow",
"main": "lib/index.js",
"author": "Parashuram <[email protected]>",
"license": "Apache-2.0",
"cordova": {
"id": "cordova-plugin-browsersync",
"platforms": [
"android",
"ios"
]
},
"keywords": [
"cordova",
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"repository": {
"type": "git",
"url": "[email protected]:axemclion/cordova-plugin-browsersync.git"
},
"dependencies": {
"browser-sync": "^2.12.3",
"cheerio": "^0.19.0",
"csp-parse": "0.0.2",
"elementtree": "^0.1.6",
"glob": "^5.0.15",
"npm": "^2.13.5",
"plist": "^1.1.0",
"q": "^1.4.1"
},
"scripts": {
"createHook": "node_modules/.bin/browserify --node --no-bundle-external --standalone=cordova-bs-plugin -o after_prepare.js -e lib/projectHook.js"
},
"devDependencies": {
"browserify": "^11.2.0"
}
}