forked from morungos/node-word-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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": "word-extractor",
"version": "1.0.4",
"description": "Node.js package to read Word .doc files",
"main": "lib/word.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"coverage": "jest --coverage",
"jsdoc": "jsdoc --configure jsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/morungos/node-word-extractor.git"
},
"keywords": [
"word"
],
"author": "Stuart Watt <stuart@morungos.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/morungos/node-word-extractor/issues"
},
"homepage": "https://github.com/morungos/node-word-extractor",
"devDependencies": {
"eslint": "^7.25.0",
"jest": "^26.6.0",
"jest-specific-snapshot": "^4.0.0",
"jsdoc": "^3.6.6"
},
"dependencies": {
"saxes": "^5.0.1",
"yauzl": "^2.10.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"transform": {},
"transformIgnorePatterns": [],
"testRegex": "(/__tests__/.*?_test)\\.jsx?$",
"collectCoverageFrom": [
"lib/**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}