forked from ProtonMail/pmcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.27 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
{
"name": "pmcrypto",
"version": "6.0.5",
"description": "",
"main": "lib/index.js",
"module": "lib/pmcrypto.js",
"scripts": {
"test": "ava -v",
"lint": "eslint $(find lib -type f -name '*.js') --quiet",
"pretty": "prettier --write $(find lib -type f -name '*.js')"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtonMail/pmcrypto.git"
},
"author": "ProtonMail",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProtonMail/pmcrypto/issues"
},
"ava": {
"require": [
"esm"
],
"files": [
"test/**/*.js",
"!test/**/*.data.js",
"!test/helper.js"
]
},
"homepage": "https://github.com/ProtonMail/pmcrypto#readme",
"dependencies": {
"openpgp": "~4.5.0",
"esm": "^3.0.84",
"emailjs-mime-parser": "^2.0.5"
},
"engines": {
"node": ">=10.15.1"
},
"devDependencies": {
"ava": "1.0.0-rc.2",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3"
}
}