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

Commit af05af6

Browse files
committed
dignified pipeline support
1 parent 6cce9e3 commit af05af6

File tree

4 files changed

+42
-6
lines changed

4 files changed

+42
-6
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@ node_modules
3131

3232
# Optional REPL history
3333
.node_repl_history
34+
35+
# Dignified.js builds
36+
dist
37+
lib

.npmignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# Compiled binary addons (http://nodejs.org/api/addons.html)
20+
build/Release
21+
22+
# Optional npm cache directory
23+
.npm
24+
25+
# Optional REPL history
26+
.node_repl_history

package.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
"name": "libp2p-ipfs",
33
"version": "0.2.0",
44
"description": "The libp2p build (module) used by js-ipfs on Node.js",
5-
"main": "src/index.js",
5+
"main": "lib/index.js",
6+
"jsnext:main": "src/index.js",
67
"scripts": {
7-
"test": "mocha tests/test-*.js",
8-
"lint": "standard"
8+
"test": "dignified-test",
9+
"test:node": "dignified-test node",
10+
"test:browser": "dignified-test browser",
11+
"build": "dignified-build",
12+
"lint": "dignified-lint",
13+
"release": "dignified-release",
14+
"release-minor": "dignified-release --minor",
15+
"release-major": "dignified-release --major"
916
},
1017
"repository": {
1118
"type": "git",
@@ -22,9 +29,8 @@
2229
"homepage": "https://github.com/ipfs/js-libp2p-ipfs#readme",
2330
"devDependencies": {
2431
"chai": "^3.5.0",
25-
"mocha": "^2.4.5",
26-
"pre-commit": "^1.1.2",
27-
"standard": "^6.0.7"
32+
"dignified.js": "github:dignifiedquire/dignified.js",
33+
"pre-commit": "^1.1.2"
2834
},
2935
"dependencies": {
3036
"libp2p-spdy": "^0.2.3",
File renamed without changes.

0 commit comments

Comments
 (0)