Skip to content

Commit 1951d75

Browse files
committed
Meta tweaks
1 parent dc99e52 commit 1951d75

File tree

5 files changed

+96
-105
lines changed

5 files changed

+96
-105
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
2+
yarn.lock
23
.nyc_output
34
coverage

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
22
node_js:
3+
- '8'
34
- '6'
45
- '4'
56
before_install:

license

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
1-
The MIT License (MIT)
1+
MIT License
22

33
Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
116

12-
The above copyright notice and this permission notice shall be included in
13-
all copies or substantial portions of the Software.
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
148

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
THE SOFTWARE.
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

package.json

Lines changed: 89 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,91 @@
11
{
2-
"name": "eslint-plugin-ava",
3-
"version": "4.2.1",
4-
"description": "ESLint rules for AVA",
5-
"license": "MIT",
6-
"repository": "avajs/eslint-plugin-ava",
7-
"author": {
8-
"name": "Sindre Sorhus",
9-
"email": "[email protected]",
10-
"url": "sindresorhus.com"
11-
},
12-
"maintainers": [
13-
{
14-
"name": "Vadim Demedes",
15-
"email": "[email protected]",
16-
"url": "github.com/vdemedes"
17-
},
18-
{
19-
"name": "James Talmage",
20-
"email": "[email protected]",
21-
"url": "github.com/jamestalmage"
22-
},
23-
{
24-
"name": "Mark Wubben",
25-
"email": "[email protected]",
26-
"url": "novemberborn.net"
27-
},
28-
{
29-
"name": "Takuto Wada",
30-
"email": "[email protected]",
31-
"url": "github.com/twada"
32-
},
33-
{
34-
"name": "Jeroen Engels",
35-
"email": "[email protected]",
36-
"url": "github.com/jfmengels"
37-
}
38-
],
39-
"engines": {
40-
"node": ">=4"
41-
},
42-
"scripts": {
43-
"test": "xo && nyc ava",
44-
"coveralls": "nyc report --reporter=text-lcov | coveralls"
45-
},
46-
"files": [
47-
"index.js",
48-
"create-ava-rule.js",
49-
"util.js",
50-
"rules"
51-
],
52-
"keywords": [
53-
"eslint",
54-
"eslintplugin",
55-
"eslint-plugin",
56-
"ava",
57-
"test",
58-
"runner",
59-
"assert",
60-
"asserts",
61-
"assertion",
62-
"mocha"
63-
],
64-
"dependencies": {
65-
"arrify": "^1.0.1",
66-
"deep-strict-equal": "^0.2.0",
67-
"enhance-visitors": "^1.0.0",
68-
"espree": "^3.1.3",
69-
"espurify": "^1.5.0",
70-
"import-modules": "^1.1.0",
71-
"multimatch": "^2.1.0",
72-
"pkg-up": "^2.0.0"
73-
},
74-
"devDependencies": {
75-
"ava": "*",
76-
"babel-eslint": "^7.1.0",
77-
"coveralls": "^2.11.9",
78-
"eslint": "^4.5.0",
79-
"eslint-ava-rule-tester": "^2.0.0",
80-
"js-combinatorics": "^0.5.0",
81-
"nyc": "^11.1.0",
82-
"pify": "^3.0.0",
83-
"xo": "*"
84-
},
85-
"peerDependencies": {
86-
"eslint": ">=3.6"
87-
},
88-
"ava": {
89-
"failWithoutAssertions": true
90-
}
2+
"name": "eslint-plugin-ava",
3+
"version": "4.2.1",
4+
"description": "ESLint rules for AVA",
5+
"license": "MIT",
6+
"repository": "avajs/eslint-plugin-ava",
7+
"author": {
8+
"name": "Sindre Sorhus",
9+
"email": "[email protected]",
10+
"url": "sindresorhus.com"
11+
},
12+
"maintainers": [
13+
{
14+
"name": "Vadim Demedes",
15+
"email": "[email protected]",
16+
"url": "github.com/vdemedes"
17+
},
18+
{
19+
"name": "James Talmage",
20+
"email": "[email protected]",
21+
"url": "github.com/jamestalmage"
22+
},
23+
{
24+
"name": "Mark Wubben",
25+
"email": "[email protected]",
26+
"url": "novemberborn.net"
27+
},
28+
{
29+
"name": "Takuto Wada",
30+
"email": "[email protected]",
31+
"url": "github.com/twada"
32+
},
33+
{
34+
"name": "Jeroen Engels",
35+
"email": "[email protected]",
36+
"url": "github.com/jfmengels"
37+
}
38+
],
39+
"engines": {
40+
"node": ">=4"
41+
},
42+
"scripts": {
43+
"test": "xo && nyc ava",
44+
"coveralls": "nyc report --reporter=text-lcov | coveralls"
45+
},
46+
"files": [
47+
"index.js",
48+
"create-ava-rule.js",
49+
"util.js",
50+
"rules"
51+
],
52+
"keywords": [
53+
"eslint",
54+
"eslintplugin",
55+
"eslint-plugin",
56+
"ava",
57+
"test",
58+
"runner",
59+
"assert",
60+
"asserts",
61+
"assertion",
62+
"mocha"
63+
],
64+
"dependencies": {
65+
"arrify": "^1.0.1",
66+
"deep-strict-equal": "^0.2.0",
67+
"enhance-visitors": "^1.0.0",
68+
"espree": "^3.1.3",
69+
"espurify": "^1.5.0",
70+
"import-modules": "^1.1.0",
71+
"multimatch": "^2.1.0",
72+
"pkg-up": "^2.0.0"
73+
},
74+
"devDependencies": {
75+
"ava": "*",
76+
"babel-eslint": "^7.1.0",
77+
"coveralls": "^2.11.9",
78+
"eslint": "^4.5.0",
79+
"eslint-ava-rule-tester": "^2.0.0",
80+
"js-combinatorics": "^0.5.0",
81+
"nyc": "^11.1.0",
82+
"pify": "^3.0.0",
83+
"xo": "*"
84+
},
85+
"peerDependencies": {
86+
"eslint": ">=3.6"
87+
},
88+
"ava": {
89+
"failWithoutAssertions": true
90+
}
9191
}

0 commit comments

Comments
 (0)