-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
35 lines (35 loc) · 940 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": "phonegap-plugin-template",
"description": "A module for generating new plugins for use in PhoneGap / Apache Cordova applications",
"version": "0.0.1",
"main": "./src/plugin-template.js",
"bin": {
"phonegap-plugin-create": "./src/main.js",
"cordova-plugin-create": "./src/main.js"
},
"repository": {
"type": "git",
"url": "git://github.com/phonegap/phonegap-plugin-template.git"
},
"bugs": {
"url": "https://github.com/phonegap/phonegap-plugin-template/issues"
},
"keywords": [
"ecosystem:cordova",
"ecosystem:phonegap"
],
"author": "Adobe PhoneGap Team",
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine --color **/*[sS]pec.js"
},
"dependencies": {
"inquirer": "^2.0.0",
"shelljs": "~0.3.0",
"validate-npm-package-license": "^3.0.1"
},
"devDependencies": {
"jasmine": "^2.5.2",
"jshint": "^2.9.4"
}
}