-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 964 Bytes
/
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
{
"name": "jsxhint",
"version": "0.3.2",
"description": "Wrapper for JSHint to allow hinting of JSX files",
"main": "jsxhint.js",
"bin": "./cli.js",
"scripts": {
"test": "tap test/test.js",
"lint": "jshint",
"postinstall": "node post-install",
"precommit": "npm run lint && npm test",
"prepublish": "docme README.md -- --configure ./.jsdocrc.json"
},
"repository": {
"type": "git",
"url": "CondeNast/JSXHint"
},
"prefer_global": true,
"keywords": [
"jshint",
"jsx",
"react",
"lint",
"jslint",
"reactjs"
],
"author": {
"name": "Todd Kennedy",
"email": "<[email protected]>",
"url": "http://tck.io"
},
"license": "MIT",
"dependencies": {
"runnel": "~0.5.1",
"glob": "~3.2.6",
"jshint": "~2.1.10",
"react-tools": "~0.4.1",
"argparse": "~0.1.15",
"colors": "~0.6.2"
},
"devDependencies": {
"tap": "~0.4.6",
"docme": "~0.1.4"
}
}