smarthash/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2016-08-15 02:43:26 +00:00
{
"name": "@pushrocks/smarthash",
2020-09-29 15:54:05 +00:00
"version": "2.1.7",
"private": false,
2019-01-30 01:42:19 +00:00
"description": "simplified access to node hash functions",
2016-08-15 02:43:26 +00:00
"main": "dist/index.js",
2016-08-15 03:55:09 +00:00
"typings": "dist/index.d.ts",
2016-08-15 02:43:26 +00:00
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)"
2016-08-15 02:43:26 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushrocks/nodehash.git"
},
"keywords": [
2019-01-30 01:42:19 +00:00
"pushrocks",
"typescript",
2016-08-15 02:43:26 +00:00
"hash",
"node",
2016-08-16 01:45:15 +00:00
"sha256",
"stream",
"filehash"
2016-08-15 02:43:26 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushrocks/nodehash/issues"
},
"homepage": "https://github.com/pushrocks/nodehash#readme",
"devDependencies": {
2019-11-21 14:17:48 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.2.0",
2019-12-15 19:12:01 +00:00
"@types/node": "^12.12.17",
2019-11-21 14:17:48 +00:00
"tslint": "^5.20.1",
2019-07-04 14:56:37 +00:00
"tslint-config-prettier": "^1.18.0"
2016-08-15 03:55:09 +00:00
},
"dependencies": {
2019-12-15 22:49:22 +00:00
"@pushrocks/smartjson": "^3.0.10",
2019-11-21 14:17:48 +00:00
"@pushrocks/smartpromise": "^3.0.6",
2019-01-30 01:37:55 +00:00
"@types/through2": "^2.0.34",
2019-07-04 14:56:37 +00:00
"through2": "^3.0.1"
},
"files": [
2019-11-21 14:20:57 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-07-04 14:56:37 +00:00
"cli.js",
"npmextra.json",
"readme.md"
]
2019-12-15 19:17:28 +00:00
}