-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.96 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
{
"name": "@consento/crypto",
"version": "0.9.0",
"private": true,
"description": "Crypto functionality used in Consento",
"main": "index.js",
"scripts": {
"ci": "npm run lint && npm run test -- --no-watchman",
"test": "jest --env=node",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"pack": "pack-ts",
"release": "npm run ci && npm run pack && cd dist && npm publish --access=public",
"lint": "eslint --ext .js,.ts ."
},
"keywords": [],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-redeclare": "off"
}
},
"eslintIgnore": [
"node_modules/*",
"dist/*",
"coverage/*",
"**/*.d.ts",
"/src/public/",
"/src/types/"
],
"dependencies": {
"@consento/codecs": "^1.1.0",
"@msgpack/msgpack": "^2.3.0",
"abort-controller": "^3.0.0",
"buffer": "^5.6.0",
"inspect-custom-symbol": "^1.1.1",
"pretty-hash": "^1.0.1",
"sodium-universal": "^3.0.2"
},
"devDependencies": {
"@leichtgewicht/pack-ts": "^1.0.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"get-random-values-polypony": "^1.0.0",
"jest": "^26.5.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/crypto.git"
},
"bugs": {
"url": "https://github.com/consento-org/crypto/issues"
},
"homepage": "https://github.com/consento-org/crypto#readme"
}