package.jsonView |
---|
| 1 … | +{ |
| 2 … | + "name": "genericmodule", |
| 3 … | + "version": "0.0.0", |
| 4 … | + "description": "", |
| 5 … | + "main": "index.js", |
| 6 … | + "scripts": { |
| 7 … | + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", |
| 8 … | + "coverage": "nyc npm test", |
| 9 … | + "lint": "standard", |
| 10 … | + "test": "node ./tests/index.js", |
| 11 … | + "build:docs": "documentation build --github -f md ./index.js > ./docs/index.md" |
| 12 … | + }, |
| 13 … | + "keywords": [ |
| 14 … | + "" |
| 15 … | + ], |
| 16 … | + "author": "mjbecze <mjbecze@gmail.com>", |
| 17 … | + "license": "MPL-2.0", |
| 18 … | + "dependencies": { |
| 19 … | + "borc": "git+https://github.com:dignifiedquire/borc.git#fix/nested-array", |
| 20 … | + "events": "^2.0.0", |
| 21 … | + "safe-buffer": "^5.1.1" |
| 22 … | + }, |
| 23 … | + "devDependencies": { |
| 24 … | + "coveralls": "^3.0.0", |
| 25 … | + "documentation": "^6.1.0", |
| 26 … | + "nyc": "^11.6.0", |
| 27 … | + "standard": "^11.0.1", |
| 28 … | + "tape": "^4.9.0" |
| 29 … | + }, |
| 30 … | + "repository": { |
| 31 … | + "type": "git", |
| 32 … | + "url": "git@github.com:wanderer/genericmodule.git" |
| 33 … | + }, |
| 34 … | + "bugs": { |
| 35 … | + "url": "https://github.com/wanderer/genericmodule/issues" |
| 36 … | + }, |
| 37 … | + "homepage": "https://github.com/wanderer/genericmodule" |
| 38 … | +} |