-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.example.json
More file actions
36 lines (36 loc) · 951 Bytes
/
package.example.json
File metadata and controls
36 lines (36 loc) · 951 Bytes
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
{
"name" : "pluginName",
"title" : "Plugin Name",
"version" : "0.1.0",
"description" : "",
"keywords": [],
"homepage" : "",
"author" : {
"name" : "<name>",
"email" : "<email>",
"url" : "<website-url>"
},
"repository" : {
"type" : "git",
"url" : "git://github.com/<github-username>/<pluginName>.git"
},
"bugs" : {
"url" : "https://github.com/<github-username>/<pluginName>/issues"
},
"licenses": [{
"type": "MIT",
"url": "https://github.com/<github-username>/<pluginName>/blob/master/LICENSE-MIT"
}],
"devDependencies" : {
"grunt" : "0.4.1",
"grunt-cli" : "0.1.9",
"grunt-contrib-watch" : "0.5.3",
"grunt-contrib-coffee" : "0.7.0",
"grunt-contrib-jasmine": "0.5.2",
"grunt-contrib-uglify" : "0.2.4",
"grunt-growl" : "0.1.5"
},
"scripts": {
"test": "grunt travis"
}
}