This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
105 lines (105 loc) · 2.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "node-webcrypto-ossl",
"version": "2.1.3",
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/node-webcrypto-ossl.git"
},
"description": "A WebCrypto Polyfill for Node in TypeScript built on OpenSSL",
"main": "buildjs/index.js",
"module": "buildjs/index.es.js",
"types": "index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "mocha",
"clear": "rimraf buildjs",
"build": "rollup -c",
"rebuild": "npm run clear && npm run build",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"prepub": "npm run lint && npm run rebuild",
"pub": "npm version patch && npm publish && git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"precoveragehtml": "npm run coverage",
"coveragehtml": "nyc report -r html",
"predev": "if [ ! -f coverage/index.html ]; then mkdir coverage; cp .waiting.html coverage/index.html; fi",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"author": "PeculiarVentures",
"license": "MIT",
"keywords": [
"crypto",
"openssl",
"webcrypto",
"rsa",
"aes",
"ec",
"jwk",
"polyfill",
"secp256k1"
],
"dependencies": {
"@peculiar/asn1-schema": "^2.0.36",
"mkdirp": "^1.0.4",
"nan": "^2.14.2",
"pvtsutils": "^1.1.7",
"tslib": "^2.2.0",
"webcrypto-core": "^1.2.0"
},
"devDependencies": {
"@peculiar/webcrypto-test": "^1.0.7",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.12",
"@types/rimraf": "^3.0.0",
"coveralls": "^3.1.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.51.1",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
},
"files": [
"build",
"buildjs",
"src",
"binding.gyp",
"index.d.ts",
"README.md"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"lib/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html",
"lcov"
]
},
"mocha": {
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"extension": [
"ts"
],
"watch-files": [
"test/**/*.ts"
]
}
}