-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "proton-api",
"version": "1.0.12",
"description": "Unofficial API for ProtonMail. Works both in browser and Node.js",
"keywords": [
"protonmail",
"proton"
],
"main": "dist/index.js",
"browser": "dist/index.browser.js",
"types": "dist/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gitladen7/proton-api.git"
},
"scripts": {
"pretest": "eslint --ext .js,.ts .",
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "rimraf dist",
"build": "npm run clean && webpack --display-modules --mode=production",
"prepublishOnly": "npm run test && npm run build"
},
"author": "gitladen7",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/create-hash": "^1.2.1",
"@types/node": "^12.7.11",
"@types/randombytes": "^2.0.0",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.0.0",
"create-hash": "^1.2.0",
"randombytes": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2",
"fp-ts": "^2.1.0",
"io-ts": "^2.0.1"
},
"files": [
"/dist"
]
}