-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
52
53
54
55
56
57
58
59
{
"name": "create-jquery-plugin",
"version": "1.0.5",
"description": "CLI for creating ready-to-start modern jQuery Plugins",
"main": "index.js",
"bin": {
"create-jquery-plugin": "./index.js"
},
"scripts": {
"start": "node .",
"test": "ava test/* -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techlab/create-jquery-plugin.git"
},
"keywords": [
"create-jquery-plugin",
"cli",
"jquery",
"jquery-plugin",
"jquery-plugin-boilerplate",
"package",
"plugin",
"util",
"gulp",
"example"
],
"author": {
"name": "Dipu Raj",
"email": "[email protected]",
"url": "http://dipu.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/techlab/create-jquery-plugin/issues"
},
"homepage": "http://techlaboratory.net/create-jquery-plugin",
"dependencies": {
"camelcase": "^6.0.0",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"conf": "^7.0.1",
"execa": "^4.0.3",
"git-config-path": "^2.0.0",
"globby": "^11.0.1",
"handlebars": "^4.7.6",
"inquirer": "^7.3.2",
"make-dir": "^3.1.0",
"ora": "^4.0.4",
"p-each-series": "^2.1.0",
"parse-git-config": "^3.0.0",
"validate-npm-package-name": "^3.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"ava": "^3.10.1"
}
}