This repository was archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.21 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.21 KB
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
{
"name": "proton-shared",
"version": "1.0.0",
"description": "Proton shared",
"sideEffects": false,
"scripts": {
"test": "NODE_ENV=test karma start test/karma.conf.js",
"testwatch": "npm test -- --auto-watch --no-single-run",
"i18n:validate": "proton-i18n validate lint-functions lib",
"i18n:validate:context": "proton-i18n extract shared && proton-i18n validate",
"lint": "eslint lib test --ext .js,.ts,tsx --quiet --cache",
"pretty": "prettier --write $(find lib -type f -name '*.js' -o -name '*.ts' -o -name '*.tsx')",
"check-types": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"(*.ts|*.tsx|*.js)": [
"prettier --write",
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtonMail/proton-shared.git"
},
"author": "ProtonMail",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ProtonMail/proton-shared/issues"
},
"homepage": "https://github.com/ProtonMail/proton-shared#readme",
"dependencies": {
"@mattiasbuelens/web-streams-adapter": "0.1.0-alpha.5",
"@sentry/browser": "^5.6.2",
"@types/dompurify": "^2.0.2",
"@types/node": "^14.11.1",
"@types/papaparse": "^5.2.5",
"@types/ua-parser-js": "^0.7.33",
"@types/webpack-env": "^1.15.3",
"date-fns": "^2.2.1",
"dompurify": "^2.0.7",
"file-saver": "^2.0.2",
"get-random-values": "github:ProtonMail/get-random-values#semver:^1.0.0",
"hi-base32": "^0.5.0",
"ical.js": "github:ProtonMail/ical.js.git#semver:~1.3.1",
"is-valid-domain": "0.0.14",
"jsbi": "^3.1.2",
"lodash": "^4.17.11",
"mimemessage": "github:ProtonMail/mimemessage.js#semver:~v1.1.4",
"mutex-browser": "github:ProtonMail/mutex-browser#semver:^1.0.0",
"papaparse": "^5.0.0",
"pm-srp": "github:ProtonMail/pm-srp.git#semver:^1.0.0",
"pmcrypto": "github:ProtonMail/pmcrypto#semver:~6.3.2",
"push.js": "^1.0.12",
"sieve.js": "github:ProtonMail/sieve.js#master",
"timezone-support": "github:ProtonMail/timezone-support#bundle",
"ua-parser-js": "^0.7.20",
"web-streams-polyfill": "^2.0.6"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.6.2",
"@types/jasmine": "^3.4.6",
"eslint": "^7.3.1",
"eslint-config-proton-lint": "github:ProtonMail/proton-lint#semver:^0.0.4",
"husky": "^4.2.5",
"jasmine": "3.5.0",
"jasmine-core": "3.5.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^4.0.2",
"lint-staged": "^10.4.0",
"prettier": "^2.0.5",
"proton-i18n": "github:ProtonMail/proton-i18n#semver:^2.1.4",
"require-inject": "^1.4.4",
"ts-loader": "^6.2.0",
"ttag": "^1.7.17",
"typescript": "^4.0.3",
"webpack": "^4.33.0"
},
"peerDependencies": {
"design-system": "github:ProtonMail/design-system.git#semver:^1.7.4",
"ttag": "^1.7.0"
}
}