-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from ipfs/feat/subdomains
Add validation of CID in Subdomains
- Loading branch information
Showing
11 changed files
with
338 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
|
||
language: node_js | ||
node_js: | ||
- 4 | ||
- 5 | ||
- node | ||
|
||
# Make sure we have new NPM. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
javascript() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,56 @@ | ||
{ | ||
"name": "is-ipfs", | ||
"version": "0.3.2", | ||
"version": "0.4.0", | ||
"description": "A set of utilities to help identify IPFS resources", | ||
"main": "src/index.js", | ||
"browser": { | ||
"fs": false | ||
}, | ||
"scripts": { | ||
"test:node": "aegir-test node", | ||
"test:browser": "aegir-test browser", | ||
"test": "aegir-test", | ||
"lint": "aegir-lint", | ||
"release": "aegir-release", | ||
"release-minor": "aegir-release --type minor", | ||
"release-major": "aegir-release --type major", | ||
"build": "aegir-build", | ||
"coverage": "aegir-coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
"test:node": "aegir test --target node", | ||
"test:browser": "aegir test --target browser", | ||
"test": "aegir test", | ||
"lint": "aegir lint", | ||
"release": "aegir release", | ||
"release-minor": "aegir release --type minor", | ||
"release-major": "aegir release --type major", | ||
"build": "aegir build", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir coverage --upload" | ||
}, | ||
"pre-commit": [ | ||
"test", | ||
"lint" | ||
], | ||
"keywords": [ | ||
"js-ipfs", | ||
"ipfs" | ||
], | ||
"author": "Francisco Dias <francisco@baiodias.com> (http://franciscodias.net/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"cids": "~0.5.1", | ||
"bs58": "^4.0.1", | ||
"multihashes": "~0.4.9" | ||
"bs58": "4.0.1", | ||
"cids": "0.5.3", | ||
"multibase": "0.4.0", | ||
"multihashes": "0.4.13" | ||
}, | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"chai": "^4.1.2", | ||
"pre-commit": "^1.2.2" | ||
"aegir": "15.0.1", | ||
"chai": "4.1.2", | ||
"pre-commit": "1.2.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/xicombd/is-ipfs.git" | ||
"url": "https://github.com/ipfs/is-ipfs.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/xicombd/is-ipfs/issues" | ||
"url": "https://github.com/ipfs/is-ipfs/issues" | ||
}, | ||
"homepage": "https://github.com/xicombd/is-ipfs", | ||
"homepage": "https://github.com/ipfs/is-ipfs", | ||
"contributors": [ | ||
"David Dias <daviddias.p@gmail.com>", | ||
"Francisco Baio Dias <xicombd@gmail.com>", | ||
"Marcin Rataj <lidel@lidel.org>", | ||
"nginnever <ginneversource@gmail.com>" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.