js-peer-id/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2015-07-08 14:51:49 -07:00
{
2015-09-15 17:14:48 +01:00
"name": "peer-id",
2016-03-03 17:45:53 +00:00
"version": "0.5.1",
2015-07-08 14:51:49 -07:00
"description": "IPFS Peer Id implementation in Node.js",
"main": "src/index.js",
"scripts": {
2015-11-05 18:46:02 +00:00
"lint": "standard",
2016-02-12 14:55:05 -08:00
"test": "npm run test:node && npm run test:browser",
2016-02-14 07:32:09 +00:00
"test:node": "mocha tests/test.js",
"test:browser": "karma start karma.conf.js",
2016-03-03 14:19:10 -08:00
"coverage": "istanbul cover --print both -- _mocha tests/test.js",
"build": "webpack"
2015-07-08 14:51:49 -07:00
},
"keywords": [
"IPFS"
],
2015-07-08 15:34:34 -07:00
"author": "David Dias <daviddias@ipfs.io>",
"license": "MIT",
"pre-commit": [
"lint",
2015-07-08 15:34:34 -07:00
"test"
],
2015-11-05 18:46:02 +00:00
"standard": {
"ignore": [
2016-02-14 07:32:09 +00:00
"dist",
"deps"
2015-11-05 18:46:02 +00:00
]
},
2015-09-14 11:58:41 +01:00
"engines": {
"node": "^4.3.0"
2015-09-14 11:58:41 +01:00
},
2015-07-08 15:34:34 -07:00
"bugs": {
2015-10-28 22:04:55 +00:00
"url": "https://github.com/diasdavid/js-peer-id/issues"
2015-07-08 15:34:34 -07:00
},
2015-10-28 22:04:55 +00:00
"homepage": "https://github.com/diasdavid/js-peer-id",
2015-07-08 15:34:34 -07:00
"devDependencies": {
2016-03-03 14:19:10 -08:00
"browserify": "^13.0.0",
2016-02-12 14:55:05 -08:00
"buffer-loader": "0.0.1",
"chai": "^3.5.0",
2016-02-14 07:32:09 +00:00
"istanbul": "^0.4.2",
2016-02-12 14:55:05 -08:00
"json-loader": "^0.5.4",
2016-02-10 13:55:59 -08:00
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
2015-08-25 10:39:15 +01:00
"pre-commit": "^1.1.1",
"standard": "^6.0.7",
2016-03-03 14:19:10 -08:00
"webpack": "^1.12.14"
2015-07-08 15:34:34 -07:00
},
"dependencies": {
"bs58": "^3.0.0",
2015-11-05 18:51:53 +00:00
"multihashing": "^0.2.0",
"node-forge": "^0.6.38",
"protocol-buffers": "^3.1.4"
2016-03-05 21:49:13 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/js-peer-id.git"
2015-07-08 15:34:34 -07:00
}
2015-09-15 17:17:59 +01:00
}