-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
105 lines (105 loc) · 2.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "eml-parse-js",
"version": "1.2.0-beta.0",
"description": "format EML file in browser env",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.umd.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.cjs.js",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"default": "./dist/index.es.js"
}
},
"scripts": {
"build": "vite build",
"build:publish": "npm run clean:dist && npm run build",
"clean:dist": "rimraf dist",
"eslint:init": "eslint --init",
"lint": "eslint --cache --fix src",
"link:lib": "rimraf node_modules/eml-parse-js && linklocal",
"prettier": "prettier --parser typescript --write src/*ts && npm run lint",
"prepublishOnly": "npm run prettier && npm run build:publish && npm run test",
"test": "mocha --reporter spec"
},
"files": [
"dist",
"LICENSE"
],
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/MQpeng/eml-parse-js"
},
"keywords": [
"eml",
"eml-parse",
"eml-format-js",
"eml-parse-js",
"typescript"
],
"author": "bean",
"license": "MIT",
"bugs": {
"url": "https://github.com/MQpeng/eml-parse-js/issues"
},
"homepage": "https://github.com/MQpeng/eml-parse-js#readme",
"contributors": [
{
"name": "Charlie Harding",
"url": "https://github.com/c-harding"
},
{
"name": "Pádraig Weeks",
"url": "https://github.com/pmweeks98"
},
{
"name": "Thomas Oeser",
"url": "https://github.com/thomasoeser"
},
{
"name": "Robert Scheinpflug",
"url": "https://github.com/neversun"
},
{
"name": "Bean Q",
"url": "https://github.com/MQpeng"
}
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"chai": "^4.2.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"iconv-lite": "^0.6.3",
"linklocal": "^2.8.2",
"mocha": "^6.2.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0"
},
"dependencies": {
"@sinonjs/text-encoding": "^0.7.2",
"js-base64": "^3.7.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"prettier --parser typescript --write",
"git add"
]
},
"packageManager": "[email protected]"
}