crypto.js/package.json

33 lines
661 B
JSON
Raw Normal View History

2017-02-17 16:34:20 +08:00
{
"name": "crypto.js",
"version": "3.0.0",
2017-02-17 16:34:20 +08:00
"description": "原生crypto加密模块的二次封装,简化常用加密函数的使用",
2020-09-16 20:01:35 +08:00
"keywords": [
"md5",
"sha1",
"sha256",
"hmac",
"base64",
"fivejs",
"crypto",
"crypto-js",
"crypto.js"
],
"author": "yutent <yutent.io@gmail.com>",
2018-12-23 17:21:58 +08:00
"repository": {
"type": "git",
2020-09-18 15:55:47 +08:00
"url": "https://github.com/bytedo/crypto.js.git"
2018-12-23 17:21:58 +08:00
},
2017-02-17 16:34:20 +08:00
"dependencies": {},
"devDependencies": {},
"main": "dist/index.js",
"files": ["dist/*"],
"scripts": {
"start": "node ./build.js"
},
2020-09-17 16:58:56 +08:00
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
2020-09-17 16:58:56 +08:00
}
2017-02-17 16:34:20 +08:00
}