-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.35 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
51
{
"name": "cordova-check-plugins",
"version": "4.0.5",
"description": "A CLI tool to check for updates / manage updating Cordova plugins.",
"main": "index.js",
"author": "Dave Alden",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dpa99c/cordova-check-plugins.git"
},
"issue": "https://github.com/dpa99c/cordova-check-plugins/issues",
"keywords": [
"ecosystem:cordova",
"cordova",
"phonegap",
"plugins",
"update",
"check"
],
"preferGlobal": true,
"bin": {
"cordova-check-plugins": "index.js"
},
"dependencies": {
"cli-spinner": "0.2.4",
"cli-status": "0.1.1",
"colors": "1.1.2",
"cordova": "*",
"cordova-common": "^1.0.0",
"fs-extra": "0.26.5",
"inquirer": "0.12.0",
"jasmine-spec-reporter": "^4.1.0",
"js-base64": "2.1.9",
"jsonfile": "2.2.3",
"lodash": "4.17.15",
"minimist": "1.2.0",
"octonode": "0.7.4",
"plugman": "1.3.0",
"semver": "5.1.0",
"xml2js": "0.4.16"
},
"devDependencies": {
"jshint": "^2.6.0",
"jasmine": "^2.5.2"
},
"scripts": {
"test": "npm install && npm run-script jshint && jasmine",
"jshint": "jshint index.js lib spec"
}
}