forked from mozilla-comm/jsmime
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "@protontech/jsmimeparser",
"version": "3.0.1",
"description": "An asynchronous MIME parser written in JavaScript",
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.d.ts",
"index.js"
],
"scripts": {
"postversion": "git push && git push --tags",
"test": "karma start karma.conf.js",
"lint": "eslint lib test --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtonMail/jsmimeparser.git"
},
"author": "ProtonMail",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProtonMail/jsmimeparser/issues"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.6",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webkit-launcher": "^1.0.2",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"playwright": "^1.25.0",
"webpack": "^5.74.0"
}
}