forked from squizlabs/HTML_CodeSniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
{
"name": "silktide-html-codesniffer",
"version": "3.0.0",
"description": "Silktide fork of HTML_CodeSniffer from https://github.com/squizlabs/HTML_CodeSniffer which is a client-side JavaScript that checks a HTML document or source code, and detects violations of a defined coding standard.",
"main": "index.js",
"private": true,
"keywords": [
"htmlcs"
],
"files": [
"build/*",
"index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "grunt build"
},
"repository": {
"type": "git",
"url": "https://github.com/silktide/HTML_CodeSniffer"
},
"author": "Squiz/Silktide",
"homepage": "http://squizlabs.github.io/HTML_CodeSniffer/",
"dependencies": {
"grunt": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-watch": "^1.0.0",
"load-grunt-tasks": "^3.5.2"
},
"devDependencies": {
"coffeescript": "^2.7.0",
"grunt-contrib-uglify": "^4.0.0",
"husky": "^2.4.1"
},
"husky": {
"hooks": {
"pre-push": "./pre-push-hook.sh"
}
}
}