-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 861 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 861 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
37
{
"name": "javascriptProjectStyleGuide",
"version": "0.1.0",
"description": "Javascript Project Style Guide. You can use this as a template.",
"author": "b612lodger <b612lodger@gmail.com>",
"tags": [
"javascript",
"project",
"style guide",
"template"
],
"repository": {
"type": "git",
"url": "https://github.com/b612lodger/javascriptProjectStyleGuide.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"bugs": {
"url": "https://github.com/b612lodger/javascriptProjectStyleGuide/issues"
},
"main": "./src/javascriptProjectStyleGuide",
"bin": {
"javascriptProjectStyleGuide": "./bin/javascriptProjectStyleGuide"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.6.3",
"grunt-contrib-uglify": "~0.2.2"
},
"scripts": {
"test": "node test/test-all.js"
}
}