-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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": "eslint-plugin-destructuring",
"version": "2.2.0",
"author": "Luke Page",
"description": "destructuring specific linting rules for ESLint",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"test": "npm run lint && npm run unit-test",
"unit-test": "mocha tests/**/*.js --compilers js:babel-register --reporter dot",
"prepublish": "rm -rf lib && babel src -d lib"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/lukeapage/eslint-plugin-destructuring"
},
"homepage": "https://github.com/lukeapage/eslint-plugin-destructuring",
"bugs": "https://github.com/lukeapage/eslint-plugin-destructuring/issues",
"dependencies": {
"lodash.zipobject": "^4.1.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015-node4": "^2.1.1",
"babel-register": "^6.9.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "~11.1.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.4",
"lodash.defaults": "^4.0.1",
"mocha": "^3.2.0"
},
"engines": {
"node": ">=4"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"destructuring"
],
"license": "MIT"
}