forked from STRML/JSXHint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.03 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
{
"name": "jsxhint",
"version": "0.11.1",
"description": "Wrapper for JSHint to allow hinting of JSX files",
"main": "jsxhint.js",
"bin": "./cli.js",
"engine": "node >= 0.10",
"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 <[email protected]>"
],
"license": "MIT",
"dependencies": {
"async": "~0.9.0",
"debug": "~2.1.0",
"glob-all": "^3.0.1",
"graceful-fs": "~3.0.5",
"jshint": "^2.6.0",
"mkdirp": "~0.5.0",
"react-tools": "^0.12.1",
"rimraf": "~2.2.8",
"through": "~2.3.6"
},
"devDependencies": {
"babel": "^4.0.1",
"precommit-hook": "~1.0.7",
"tap": "~0.4.13"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}