-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "cordova-plugin-webserver",
"version": "1.0.1",
"description": "Cordova Plugin Webserver",
"homepage": "https://github.com/bykof/cordova-plugin-webserver/",
"author": {
"name": "Michael Bykovski"
},
"license": "Apache-2.0",
"cordova": {
"id": "cordova-plugin-webserver",
"platforms": [
"ios",
"android"
]
},
"repository": {
"type": "git",
"url": "https://github.com/bykof/cordova-plugin-webserver"
},
"keywords": [
"cordova",
"ios",
"android",
"ecosystem:cordova",
"cordova-ios",
"cordova:plugin",
"webserver",
"http",
"request",
"response"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cordova": "^11.0.0"
},
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src/www/webserver.js --out-file webserver.js"
},
"browser": {
"cordova": false
},
"dependencies": {
"universal-router": "^9.1.0"
}
}