-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1008 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1008 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "jsxhint",
"version": "0.15.1",
"description": "Wrapper for JSHint to allow hinting of JSX files",
"main": "jsxhint.js",
"bin": "./cli.js",
"engine": "node >= 0.8",
"scripts": {
"test": "node ./node_modules/tap/bin/tap test/test.js",
"lint": "jshint"
},
"repository": {
"type": "git",
"url": "STRML/JSXHint"
},
"directories": {
"test": "test"
},
"prefer_global": true,
"keywords": [
"jshint",
"jsx",
"react",
"lint",
"jslint",
"reactjs"
],
"author": "Samuel Reed",
"contributors": [
"Casey Foster <c@sey.me>"
],
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.14",
"debug": "~2.1.0",
"fs-extra": "^0.16.5",
"glob-all": "^3.0.1",
"jshint": "^2.6.0",
"jstransform": "^11.0.2",
"through": "~2.3.6"
},
"devDependencies": {
"babel": "^5.4.0",
"precommit-hook": "~1.0.7",
"tap": "~0.4.13"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}