-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.33 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.33 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
90
91
92
{
"name": "@bitcircuit/pst-api",
"version": "1.0.0",
"description": "Extract objects from MS Outlook/Exchange PST files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "run-s test:unit test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 jest --coverage --reporters=default --reporters=jest-junit"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@types/debug": "4.1.12",
"@types/jest": "^29.5.12",
"@types/long": "^5.0.0",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"debug": "^4.3.5",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"long": "^5.2.3",
"uuid-parse": "^1.1.0"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"jest": {
"testMatch": [
"<rootDir>/src/__tests__/**/*.spec.ts"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/__tests__/**/*.*"
],
"coverageReporters": [
"text",
"cobertura"
]
}
}