-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "cordova-plugin-wifi-manager",
"version": "0.5.0",
"description": "Wi-Fi Manager Plugin for Apache Cordova",
"engines": {
"node": ">= 14"
},
"types": "./types/index.d.ts",
"cordova": {
"id": "cordova-plugin-wifi-manager",
"platforms": [
"android",
"ios"
]
},
"repository": {
"type": "git",
"url": "https://github.com/sushichop/cordova-plugin-wifi-manager"
},
"keywords": [
"cordova",
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"wifi"
],
"scripts": {
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "eslint . --ext .js",
"lint:prettier": "prettier . --check",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test:android": "cordova-paramedic --cleanUpAfterRun --verbose --platform android --plugin .",
"test:ios": "cordova-paramedic --cleanUpAfterRun --verbose --platform ios --plugin ."
},
"author": "Koichi Yokota",
"license": "MIT",
"devDependencies": {
"danger": "^11.0.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1"
}
}