UNPKG

2.17 kBJSONView Raw
1{
2 "name": "eslint-watch",
3 "version": "3.1.1",
4 "description": "Run eslint with watch mode",
5 "main": "./src/cli.js",
6 "scripts": {
7 "eslint": "node ./bin/esw --no-ignore --color",
8 "clean": "rm -rf build node_modules",
9 "lint": "node ./bin/esw",
10 "lw": "node ./bin/esw -w",
11 "test": "mocha tests --timeout 10000 --recursive --retries 3 -r tests/globals --compilers js:babel-core/register",
12 "tdd": "mocha -w tests --recursive -R spec",
13 "ci": "npm run lint && npm run coverage",
14 "ci-win": "npm run lint && npm test",
15 "coverage": "istanbul cover _mocha -- --recursive tests --timeout 10000 --retries 3 -r tests/globals --compilers js:babel-core/register",
16 "build": "babel src -d build -s inline",
17 "prepublish": "npm run build",
18 "deploy": "./scripts/deploy.sh"
19 },
20 "engines": {
21 "node": ">=4"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/rizowski/eslint-watch.git"
26 },
27 "bin": {
28 "esw": "./bin/esw"
29 },
30 "keywords": [
31 "eslint",
32 "plugin",
33 "command line tool",
34 "watch",
35 "javascript",
36 "linter"
37 ],
38 "author": {
39 "name": "Colten Rouska",
40 "email": "c.rouska@gmail.com"
41 },
42 "license": "MIT",
43 "bugs": {
44 "url": "https://github.com/rizowski/eslint-watch/issues"
45 },
46 "homepage": "https://github.com/rizowski/eslint-watch",
47 "peerDependencies": {
48 "eslint": ">=0.19.0 <5.0.0"
49 },
50 "dependencies": {
51 "babel-polyfill": "^6.20.0",
52 "bluebird": "^3.4.7",
53 "chalk": "^1.1.3",
54 "chokidar": "^1.4.3",
55 "debug": "^2.6.3",
56 "keypress": "^0.2.1",
57 "lodash": "^4.17.4",
58 "optionator": "^0.8.2",
59 "source-map-support": "^0.4.14",
60 "text-table": "^0.2.0",
61 "unicons": "0.0.3"
62 },
63 "devDependencies": {
64 "babel-cli": "^6.24.1",
65 "babel-core": "^6.24.1",
66 "babel-eslint": "^7.2.2",
67 "babel-plugin-add-module-exports": "^0.2.1",
68 "babel-preset-env": "^1.3.3",
69 "chai": "^4.0.2",
70 "eslint": "latest",
71 "eslint-config-rizowski": "^1.0.2",
72 "istanbul": "^0.4.5",
73 "mocha": "^3.2.0",
74 "mocha-sinon": "^2.0.0",
75 "proxyquire": "^1.7.10",
76 "sinon": "^1.17.7",
77 "sinon-chai": "^2.9.0"
78 }
79}