-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.59 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
{
"name": "webcrypto-local",
"version": "1.0.0",
"description": "`webcrypto-local` framework",
"private": true,
"workspaces": [
"packages/*"
],
"main": "dist/webcrypto-local.js",
"module": "dist/webcrypto-socket.es.js",
"browser": "dist/webcrypto-socket.js",
"types": "index.d.ts",
"scripts": {
"prepare_off": "npm run build",
"test": "mocha",
"clear": "lerna run clear",
"build": "lerna run build",
"rebuild": "lerna run rebuild",
"prepub": "lerna run rebuild",
"pub": "lerna publish",
"prepub:next": "lerna run rebuild",
"pub:next": "lerna publish --dist-tag next",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"start": "ts-node -r tsconfig-paths/register scripts/server.ts",
"docs": "typedoc && touch ./docs/.nojekyll",
"docs:deploy": "gh-pages -d docs -t",
"upgrade": "yarn upgrade-interactive --latest",
"setup": "ts-node scripts/postinstall.ts",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/webcrypto-local.git"
},
"author": "PeculiarVentures",
"contributors": [
"Miroshin Stepan<[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/webcrypto-local/issues"
},
"homepage": "https://github.com/PeculiarVentures/webcrypto-local#readme",
"devDependencies": {
"2key-ratchet": "^1.0.18",
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.25.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/long": "^5.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "^20.14.2",
"@types/ws": "^8.5.10",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"extract-zip": "^2.0.1",
"gh-pages": "^5.0.0",
"lerna": "^8.1.8",
"mocha": "^10.7.3",
"node-gyp": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^6.0.1",
"rollup": "^3.20.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typedoc": "^0.26.8",
"typedoc-plugin-lerna-packages": "^0.3.1",
"typescript": "^5.6.3"
},
"resolutions": {
"pkcs11js": "2.1.6",
"@peculiar/asn1-schema": "^2.1.7",
"tsprotobuf": "^1.0.19"
},
"dependencies": {}
}