This repository was archived by the owner on Aug 24, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +55
-50
lines changed Expand file tree Collapse file tree 5 files changed +55
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ cache : npm
3
+ stages :
4
+ - check
5
+ - test
6
+ - cov
7
+
8
+ node_js :
9
+ - ' 10'
10
+
11
+ os :
12
+ - linux
13
+ - osx
14
+
15
+ script : npx nyc -s npm run test:node -- --bail
16
+ after_success : npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
17
+
18
+ jobs :
19
+ include :
20
+ - os : windows
21
+ filter_secrets : false
22
+ cache : false
23
+
24
+ - stage : check
25
+ script :
26
+ - npx aegir commitlint --travis
27
+ - npx aegir dep-check
28
+ - npm run lint
29
+
30
+ - stage : test
31
+ name : chrome
32
+ addons :
33
+ chrome : stable
34
+ script : npx aegir test -t browser -t webworker
35
+
36
+ - stage : test
37
+ name : firefox
38
+ addons :
39
+ firefox : latest
40
+ script : npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless
41
+
42
+ notifications :
43
+ email : false
Original file line number Diff line number Diff line change 4
4
[ ![ ] ( https://img.shields.io/badge/project-multiformats-blue.svg?style=flat-square )] ( https://github.com/multiformats/multiformats )
5
5
[ ![ ] ( https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square )] ( https://webchat.freenode.net/?channels=%23ipfs )
6
6
[ ![ Coverage Status] ( https://coveralls.io/repos/github/multiformats/js-multihashing-async/badge.svg?branch=master )] ( https://coveralls.io/github/multiformats/js-multihashing-async?branch=master )
7
+ [ ![ Travis CI] ( https://flat.badgen.net/travis/ipfs/js-multihashing-async )] ( https://travis-ci.com/ipfs/js-multihashing-async )
7
8
[ ![ Dependency Status] ( https://david-dm.org/multiformats/js-multihashing-async.svg?style=flat-square )] ( https://david-dm.org/multiformats/js-multihashing-async )
8
9
[ ![ js-standard-style] ( https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square )] ( https://github.com/feross/standard )
9
10
[ ![ ] ( https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square )] ( https://github.com/RichardLitt/standard-readme )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
"name" : " multihashing-async" ,
3
3
"version" : " 0.5.2" ,
4
4
"description" : " multiple hash functions" ,
5
+ "keywords" : [
6
+ " multihash"
7
+ ],
8
+ "homepage" : " https://github.com/multiformats/js-multihashing-async" ,
9
+ "bugs" : " https://github.com/multiformats/js-multihashing-async/issues" ,
10
+ "license" : " MIT" ,
5
11
"leadMaintainer" : " Hugo Dias <mail@hugodias.me>" ,
12
+ "files" : [
13
+ " src" ,
14
+ " dist"
15
+ ],
6
16
"main" : " src/index.js" ,
7
17
"browser" : {
8
18
"./src/crypto-sha1-2.js" : " ./src/crypto-sha1-2-browser.js"
9
19
},
20
+ "repository" : " github:multiformats/js-multihashing-async" ,
10
21
"scripts" : {
11
22
"test" : " aegir test" ,
12
23
"test:browser" : " aegir test -t browser" ,
17
28
"release-minor" : " aegir release --type minor --docs" ,
18
29
"release-major" : " aegir release --type major --docs" ,
19
30
"build" : " aegir build" ,
20
- "coverage" : " aegir coverage" ,
21
- "coverage-publish" : " aegir coverage publish" ,
22
31
"bench" : " node benchmarks/hash.js"
23
32
},
24
- "pre-push" : [
25
- " lint" ,
26
- " test"
27
- ],
28
- "repository" : {
29
- "type" : " git" ,
30
- "url" : " git://github.com/multiformats/js-multihashing-async.git"
31
- },
32
- "keywords" : [
33
- " multihash"
34
- ],
35
- "license" : " MIT" ,
36
- "bugs" : {
37
- "url" : " https://github.com/multiformats/js-multihashing-async/issues"
38
- },
39
33
"dependencies" : {
40
34
"blakejs" : " ^1.1.0" ,
41
35
"js-sha3" : " ~0.8.0" ,
53
47
"node" : " >=6.0.0" ,
54
48
"npm" : " >=3.0.0"
55
49
},
56
- "homepage" : " https://github.com/multiformats/js-multihashing-async" ,
57
50
"contributors" : [
58
51
" André Cruz <andremiguelcruz@msn.com>" ,
59
52
" David Dias <daviddias.p@gmail.com>" ,
You can’t perform that action at this time.
0 commit comments