forked from bryanrsmith/eslint-plugin-no-unused-vars-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "eslint-plugin-no-unused-vars-rest",
"version": "1.0.6",
"description": "An enhanced version of the ESLint core rule no-unused-vars with allowances for experimental object rest properties.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Bryan R Smith <[email protected]>",
"homepage": "https://github.com/bryanrsmith/eslint-plugin-no-unused-vars-rest",
"repository": {
"type": "git",
"url": "git://github.com/bryanrsmith/eslint-plugin-no-unused-vars-rest.git"
},
"main": "dist/index.js",
"directories": {
"lib": "dist/"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "npm run lint && npm run test && rm -rf dist && babel src --out-dir dist",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/**/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/ test/",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
},
"dependencies": {},
"peerDependencies": {
"eslint": "^3.0.0"
},
"devDependencies": {
"@bryanrsmith/eslint-config-standard": "^2.1.3",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.1.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-latest": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.9.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.1",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"release-script": "^1.0.2"
},
"license": "MIT",
"babel": {
"presets": [
"latest",
"stage-2"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}