UNPKG

1.15 kBJSONView Raw
1{
2 "name": "word-extractor",
3 "version": "1.0.4",
4 "description": "Node.js package to read Word .doc files",
5 "main": "lib/word.js",
6 "scripts": {
7 "test": "jest",
8 "test-watch": "jest --watch",
9 "coverage": "jest --coverage",
10 "jsdoc": "jsdoc --configure jsdoc.json"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/morungos/node-word-extractor.git"
15 },
16 "keywords": [
17 "word"
18 ],
19 "author": "Stuart Watt <stuart@morungos.com>",
20 "license": "MIT",
21 "bugs": {
22 "url": "https://github.com/morungos/node-word-extractor/issues"
23 },
24 "homepage": "https://github.com/morungos/node-word-extractor",
25 "devDependencies": {
26 "eslint": "^7.25.0",
27 "jest": "^26.6.0",
28 "jest-specific-snapshot": "^4.0.0",
29 "jsdoc": "^3.6.6"
30 },
31 "dependencies": {
32 "saxes": "^5.0.1",
33 "yauzl": "^2.10.0"
34 },
35 "jest": {
36 "moduleFileExtensions": [
37 "js"
38 ],
39 "transform": {},
40 "transformIgnorePatterns": [],
41 "testRegex": "(/__tests__/.*?_test)\\.jsx?$",
42 "collectCoverageFrom": [
43 "lib/**/*.js"
44 ],
45 "coveragePathIgnorePatterns": [
46 "/node_modules/"
47 ]
48 }
49}