1 Star 0 Fork 0

NATS/ts-nkeys

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
{
"name": "ts-nkeys",
"version": "1.0.16",
"description": "A public-key signature system based on Ed25519 for the NATS ecosystem in typescript for ts-nats and node-nats",
"main": "lib/nkeys.js",
"types": "lib/nkeys.d.ts",
"scripts": {
"build": "npm run clean:dist && tsc && npm run copy:dist",
"clean": "npm run clean:dist",
"clean:dist": "rm -rf lib/* coverage/* .nyc_output/*",
"copy:dist": "cp lib/src/* lib/",
"cover:html": "nyc report --reporter=html && open coverage/index.html",
"cover:coveralls": "nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
"pack": "npm run build && npm pack",
"debugtest": "tsc && node node_modules/.bin/ava --verbose -T 6500000 --match",
"test": "tsc && nyc ava --verbose -T 15000"
},
"repository": {
"type": "git",
"url": "https://github.com//nats-io/ts-nkeys"
},
"keywords": [
"nats",
"Ed25519",
"node",
"typescript"
],
"author": "The NATS Authors",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^14.0.5",
"ava": "^3.8.1",
"coveralls": "^3.1.0",
"dependency-check": "^4.1.0",
"nyc": "^15.0.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"tweetnacl": "^1.0.3"
},
"ava": {
"failFast": false,
"require": [
"./lib/test/helpers/ava_fix.js"
],
"files": [
"./lib/test/**/*.js",
"!./lib/test/helpers/**/*.js"
]
},
"nyc": {
"extension": [
".ts",
".js"
],
"include": [
"src/**/*.ts",
"lib/src/**/*.js"
],
"exclude": [
"lib/test/**",
"examples/**",
"benchmark/**"
],
"sourceMap": true,
"all": false
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nats-io/ts-nkeys.git
[email protected]:nats-io/ts-nkeys.git
nats-io
ts-nkeys
ts-nkeys
master

搜索帮助