-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (44 loc) · 1.13 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
{
"name": "eslint-plugin-smells",
"version": "1.0.1",
"author": "Elijah Manor <[email protected]>",
"description": "ESLint rules for JavaScript Smells",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit-test",
"lint": "eslint ./",
"unit-test": "istanbul cover --dir reports/coverage _mocha tests/**/*.js -- --reporter dot",
"coveralls": "cat ./reports/coverage/lcov.info | coveralls"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/elijahmanor/eslint-plugin-smells"
},
"homepage": "https://github.com/elijahmanor/eslint-plugin-smells",
"bugs": "https://github.com/elijahmanor/eslint-plugin-smells/issues",
"devDependencies": {
"coveralls": "2.11.2",
"eslint": "0.18",
"eslint-tester": "0.6.0",
"istanbul": "0.3.11",
"mocha": "2.2.1"
},
"keywords": [
"eslint-plugin",
"eslintplugin",
"eslint",
"smells"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/elijahmanor/eslint-plugin-smells/master/LICENSE"
}
]
}