-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "jscodesniffer",
"description": "Tool to ensure that your JavaScript code does not violate the specified coding standard (Idiomatic Style Manifesto or JQuery Core Style Guidelines)",
"version": "2.2.2",
"author": "Dmitry Sheiko <me@dsheiko.com>",
"contributors": [],
"main": "jscs-module.js",
"homepage": "http://dsheiko.github.io/jscodesniffer/",
"bin": {
"jscs": "bin/jscs.js"
},
"dependencies": {
"esprima": "~1.0.4",
"glob": "^5.0.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.4.3",
"grunt-mocha-cli": "~1.2.1",
"assert": ">=0.4.9",
"mocha": ">=1.7.4",
"should": "*",
"jsdoc": "*"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/fawek/codepainter/raw/master/LICENSE"
}
],
"maintainers": [
"Dmitry Sheiko <me@dsheiko.com> (http://dsheiko.com)"
],
"repository": {
"type": "git",
"url": "https://github.com/dsheiko/jscodesniffer.git"
},
"bugs": {
"url": "https://github.com/dsheiko/jscodesniffer/issues"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"code style",
"formatter",
"lint",
"linter",
"style guide",
"validate",
"jquery",
"IdiomaticJs"
]
}