-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 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
45
46
47
48
49
{
"name": "officecrypto-tool",
"version": "0.0.18",
"description": "officeCrypto is a library for node.js that can be used to decrypt and encrypt excel files.",
"keywords": [
"encrypt",
"decrypt",
"xls",
"xlsx",
"cfb",
"office",
"ole"
],
"private": false,
"license": "MIT",
"author": "zurmokeeper",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prepare": "husky install",
"lint-staged": "pnpm dlx lint-staged",
"lint": "eslint --ext .js",
"test": "jest",
"coverage": "jest --coverage",
"testExcel": "jest tests/office/excel.test.js",
"testWord": "jest tests/office/word.test.js"
},
"types": "index.d.ts",
"dependencies": {
"cfb": "^1.2.2",
"crypto-js": "^4.2.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"lint-staged": "^13.2.0"
},
"lint-staged": {
"src/**/*.js": "pnpm run lint"
},
"repository": {
"type": "git",
"url": "git@github.com:zurmokeeper/officecrypto-tool.git"
}
}