Commit 01587eaf141302ad9c7d7c412205e3c0188dcd49
up[date standard]
Signed-off-by: wanderer <mjbecze@gmail.com>wanderer committed on 8/16/2017, 4:09:30 PM
Parent: 38f718562e84b8cd2135ff0de9da998771d971c5
Files changed
.travis.yml | changed |
README.md | changed |
package.json | changed |
tests/index.js | changed |
.travis.yml | ||
---|---|---|
@@ -1,18 +1,10 @@ | ||
1 | 1 … | language: node_js |
2 | 2 … | node_js: |
3 | 3 … | - "8" |
4 | 4 … | env: |
5 | - global: | |
6 | - - CXX=g++-4.8 | |
7 | 5 … | matrix: |
8 | 6 … | - TEST_SUITE=test |
9 | -addons: | |
10 | - apt: | |
11 | - sources: | |
12 | - - ubuntu-toolchain-r-test | |
13 | - packages: | |
14 | - - g++-4.8 | |
15 | 7 … | matrix: |
16 | 8 … | fast_finish: true |
17 | 9 … | include: |
18 | 10 … | - os: linux |
README.md | ||
---|---|---|
@@ -4,12 +4,12 @@ | ||
4 | 4 … | [![Coverage Status](https://img.shields.io/coveralls/wanderer/lockmap.svg?style=flat-square)](https://coveralls.io/r/wanderer/lockmap) |
5 | 5 … | |
6 | 6 … | [![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard) |
7 | 7 … | |
8 | -Creates a map of locks to ids that can be used as a semaphore | |
8 … | +Creates a promise based map of locks that can be used as a semaphore | |
9 | 9 … | |
10 | 10 … | # INSTALL |
11 | -`npm install <name>` | |
11 … | +`npm install lockmap` | |
12 | 12 … | |
13 | 13 … | # USAGE |
14 | 14 … | |
15 | 15 … | ```javascript |
package.json | ||
---|---|---|
@@ -1,8 +1,8 @@ | ||
1 | 1 … | { |
2 | - "name": "name", | |
2 … | + "name": "lockmap", | |
3 | 3 … | "version": "0.0.0", |
4 | - "description": "stuff", | |
4 … | + "description": "Creates a promise based map of locks that can be used as a semaphore", | |
5 | 5 … | "main": "index.js", |
6 | 6 … | "scripts": { |
7 | 7 … | "coverage": "istanbul cover ./tests/index.js", |
8 | 8 … | "coveralls": "npm run coverage && coveralls <coverage/lcov.info", |
@@ -10,26 +10,26 @@ | ||
10 | 10 … | "test": "node ./tests/index.js", |
11 | 11 … | "build:docs": "documentation --github -f md ./index.js > ./docs/index.md" |
12 | 12 … | }, |
13 | 13 … | "keywords": [ |
14 … | + "" | |
14 | 15 … | ], |
15 | 16 … | "author": "mjbecze <mjbecze@gmail.com>", |
16 | 17 … | "license": "MPL-2.0", |
17 | 18 … | "dependencies": { |
18 | 19 … | }, |
19 | 20 … | "devDependencies": { |
20 | - "browserify": "^14.2.0", | |
21 | 21 … | "coveralls": "^2.11.4", |
22 | - "documentation": "^3.0.4", | |
22 … | + "documentation": "^5.2.0", | |
23 | 23 … | "istanbul": "^0.4.1", |
24 | - "standard": "^9.0.0", | |
24 … | + "standard": "^10.0.0", | |
25 | 25 … | "tape": "^4.0.3" |
26 | 26 … | }, |
27 | 27 … | "repository": { |
28 | 28 … | "type": "git", |
29 | - "url": "" | |
29 … | + "url": "git@github.com:wanderer/lockmap.git" | |
30 | 30 … | }, |
31 | 31 … | "bugs": { |
32 | - "url": "" | |
32 … | + "url": "https://github.com/wanderer/lockmap/issues" | |
33 | 33 … | }, |
34 | - "homepage": "" | |
34 … | + "homepage": "https://github.com/wanderer/lockmap" | |
35 | 35 … | } |
Built with git-ssb-web