File tree 3 files changed +20
-9
lines changed
3 files changed +20
-9
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ notifications:
7
7
email : false
8
8
after_success :
9
9
- npm run coveralls
10
+ - npm run codeclimate
Original file line number Diff line number Diff line change 4
4
[ ![ npm downloads] ( https://img.shields.io/npm/dm/anime-dl.svg?style=flat-square )] ( https://www.npmjs.com/package/anime-dl )
5
5
[ ![ Build Status] ( https://img.shields.io/travis/lgaticaq/anime-dl.svg?style=flat-square )] ( https://travis-ci.org/lgaticaq/anime-dl )
6
6
[ ![ Coverage Status] ( https://img.shields.io/coveralls/lgaticaq/anime-dl/master.svg?style=flat-square )] ( https://coveralls.io/github/lgaticaq/anime-dl?branch=master )
7
+ [ ![ Code Climate] ( https://img.shields.io/codeclimate/github/lgaticaq/anime-dl.svg?style=flat-square )] ( https://codeclimate.com/github/lgaticaq/anime-dl )
7
8
[ ![ dependency Status] ( https://img.shields.io/david/lgaticaq/anime-dl.svg?style=flat-square )] ( https://david-dm.org/lgaticaq/anime-dl#info=dependencies )
8
9
[ ![ devDependency Status] ( https://img.shields.io/david/dev/lgaticaq/anime-dl.svg?style=flat-square )] ( https://david-dm.org/lgaticaq/anime-dl#info=devDependencies )
9
- [ ![ Join the chat at https://gitter.im/lgaticaq/anime-dl ] ( https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg?style=flat-square )] ( https://gitter.im/lgaticaq/anime-dl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge )
10
10
11
- Search and get anime video url
11
+ > Search and get anime video url
12
12
13
13
## Installation
14
14
@@ -36,3 +36,7 @@ anime.getLinksByNameAndChapter(name, chapter).then(console.log);
36
36
]
37
37
}*/
38
38
```
39
+
40
+ ## License
41
+
42
+ [ MIT] ( https://tldrlegal.com/license/mit-license )
Original file line number Diff line number Diff line change 4
4
"description" : " Search and get anime video url" ,
5
5
"main" : " src" ,
6
6
"scripts" : {
7
- "pretest" : " eslint src " ,
7
+ "pretest" : " eslint . " ,
8
8
"test" : " istanbul cover _mocha" ,
9
- "coveralls" : " coveralls < coverage/lcov.info"
9
+ "coveralls" : " coveralls < coverage/lcov.info" ,
10
+ "codeclimate" : " codeclimate-test-reporter < coverage/lcov.info" ,
11
+ "release:major" : " changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish" ,
12
+ "release:minor" : " changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish" ,
13
+ "release:patch" : " changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
10
14
},
11
15
"engines" : {
12
16
"node" : " >=4"
26
30
"homepage" : " https://github.com/lgaticaq/anime-dl#readme" ,
27
31
"dependencies" : {
28
32
"cheerio" : " ^0.22.0" ,
29
- "cloudscraper" : " ^1.2.2 " ,
33
+ "cloudscraper" : " ^1.4.0 " ,
30
34
"fuse.js" : " ^2.5.0"
31
35
},
32
36
"devDependencies" : {
33
37
"chai" : " ^3.5.0" ,
34
- "coveralls" : " ^2.11.9" ,
35
- "eslint" : " ^3.0.1" ,
36
- "istanbul" : " ^0.4.3" ,
37
- "mocha" : " ^3.0.0" ,
38
+ "codeclimate-test-reporter" : " ^0.3.3" ,
39
+ "coveralls" : " ^2.11.14" ,
40
+ "eslint" : " 3.6.0" ,
41
+ "generate-changelog" : " ^1.0.2" ,
42
+ "istanbul" : " ^0.4.5" ,
43
+ "mocha" : " ^3.0.2" ,
38
44
"nock" : " ^8.0.0"
39
45
},
40
46
"eslintConfig" : {
You can’t perform that action at this time.
0 commit comments