forked from AlverLyu/sm.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 910 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@ont-dev/sm.js",
"version": "0.1.7",
"description": "SM series cryptography in javascript implementation",
"main": "index.js",
"scripts": {
"test": "",
"dist": "browserify -r ./index.js:sm.js > dist/sm.js",
"postdist": "uglifyjs -mc -o dist/sm.min.js dist/sm.js",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlverLyu/sm.js.git"
},
"keywords": [
"sm2",
"sm3",
"crypto",
"ecc"
],
"author": "Alver Lyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlverLyu/sm.js/issues"
},
"homepage": "https://github.com/AlverLyu/sm.js#readme",
"dependencies": {
"bn.js": "^4.11.6",
"elliptic": "^6.4.0",
"hash.js": "^1.0.3",
"hmac-drbg": "^1.0.1",
"inherits": "^2.0.3"
},
"devDependencies": {
"browserify": "^16.5.1",
"uglify-js": "^3.0.15"
}
}