forked from PeculiarVentures/webcrypto-liner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 KB
/
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
40
41
42
43
{
"name": "webcrypto-liner",
"version": "0.1.36",
"description": "A WebCrypto polyfill that \"smooths out\" the rough-edges in existing User Agent implementations.",
"main": "build/index.js",
"scripts": {
"prepare": "npm run build:prod",
"build": "npm run build:prod",
"build:es5": "tsc",
"build:es2015": "tsc -p tsconfig.es2015.json",
"build:webpack": "webpack",
"build:prod": "webpack -p",
"pub": "npm run build:prod && npm version patch && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/webcrypto-liner"
},
"dependencies": {
"asmcrypto.js": "^0.22.0",
"elliptic": "^6.4.0",
"webcrypto-core": "^0.1.24"
},
"devDependencies": {
"@types/node": "^8.5.2",
"ts-loader": "^4.1.0",
"tslib": "^1.9.0",
"typescript": "^2.8.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
},
"keywords": [
"crypto",
"webcrypto",
"rsa",
"aes",
"ec",
"secp256k1",
"sha"
],
"author": "PeculiarVentures",
"license": "MIT"
}