Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
dignified pipeline support
Browse files Browse the repository at this point in the history
  • Loading branch information
JGAntunes committed Apr 6, 2016
1 parent 6cce9e3 commit af05af6
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ node_modules

# Optional REPL history
.node_repl_history

# Dignified.js builds
dist
lib
26 changes: 26 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
18 changes: 12 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@
"name": "libp2p-ipfs",
"version": "0.2.0",
"description": "The libp2p build (module) used by js-ipfs on Node.js",
"main": "src/index.js",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "mocha tests/test-*.js",
"lint": "standard"
"test": "dignified-test",
"test:node": "dignified-test node",
"test:browser": "dignified-test browser",
"build": "dignified-build",
"lint": "dignified-lint",
"release": "dignified-release",
"release-minor": "dignified-release --minor",
"release-major": "dignified-release --major"
},
"repository": {
"type": "git",
Expand All @@ -22,9 +29,8 @@
"homepage": "https://github.com/ipfs/js-libp2p-ipfs#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2",
"standard": "^6.0.7"
"dignified.js": "github:dignifiedquire/dignified.js",
"pre-commit": "^1.1.2"
},
"dependencies": {
"libp2p-spdy": "^0.2.3",
Expand Down
File renamed without changes.

0 comments on commit af05af6

Please sign in to comment.