-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "polyjuice",
"version": "2.2.4",
"description": "A utility to converts JSHint and JSCS files into ESLint and vice-versa",
"main": "./index",
"scripts": {
"test": "npm run lint && npm run mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha -- --opts mocha.opts --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --opts mocha.opts",
"mocha": "./node_modules/.bin/_mocha --opts mocha.opts",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc lib test"
},
"repository": {
"type": "git",
"url": "https://github.com/brenolf/polyjuice.git"
},
"keywords": [
"linter",
"jscs",
"jshint",
"eslint",
"transpiler",
"converter"
],
"author": "Breno Lima de Freitas <[email protected]> (https://breno.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brenolf/polyjuice/issues"
},
"homepage": "https://github.com/brenolf/polyjuice",
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"jscs": "^2.0.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "^1.0.0"
},
"bin": {
"polyjuice": "./lib/bin.js"
},
"dependencies": {
"eslint": "^2.8.0",
"object-assign": "^4.1.0",
"strip-json-comments": "^1.0.4",
"yargs": "^3.32.0"
}
}