-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.72 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
{
"name": "tc-source-content-updater",
"version": "1.4.32",
"description": "Module that updates source content for the desktop application translationCore.",
"main": "lib/index.js",
"display": "library",
"scripts": {
"test": "eslint ./src && jest --json --outputFile=jest-results.json",
"test:showFails": "eslint ./src && jest --reporters jest-silent-reporter",
"fix": "eslint ./src --fix",
"prebuild": "rm -rf ./lib",
"build": "NODE_ENV=production babel ./src -d ./lib",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git tag v$npm_package_version && git push origin v$npm_package_version"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageDirectory": "coverage",
"testURL": "http://localhost",
"roots": [
"src",
"__tests__"
],
"testRegex": ".*\\.test\\.js$",
"setupFiles": [
"./testSetup/global.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldingWord/tc-source-content-updater.git"
},
"keywords": [
"dynamic-source-content-updater",
"tC_resources",
"tc resources",
"resource updater",
"translationCore"
],
"author": "@unfoldingword",
"license": "ISC",
"bugs": {
"url": "https://github.com/unfoldingWord/tc-source-content-updater/issues"
},
"homepage": "https://github.com/unfoldingWord/tc-source-content-updater#readme",
"engines": {
"node": ">=16.14 <18.21"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"bible-reference-range": "1.0.1",
"deep-equal": "1.0.1",
"eslint": "^5.11.1",
"eslint-config-google": "^0.11.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^23.6.0",
"jest-silent-reporter": "^0.6.0",
"lodash": "4.17.19",
"nock": "^10.0.6",
"os": "^0.1.2",
"rimraf": "^2.6.3",
"semver": "5.5.0",
"string-punctuation-tokenizer": "^2.2.0",
"tmp": "0.0.33",
"tsv-groupdata-parser": "1.1.1",
"usfm-js": "3.4.0"
},
"dependencies": {
"adm-zip": "^0.4.11",
"agentkeepalive": "4.1.0",
"follow-redirects": "1.11.0",
"fs-extra": "^4.0.3",
"ospath": "^1.2.2",
"path-extra": "^4.2.1",
"promise-parallel-throttle": "^3.3.0",
"request": "^2.87.0",
"url": "^0.11.0",
"yamljs": "^0.3.0"
},
"peerDependencies": {
"bible-reference-range": "^1.0.1",
"string-punctuation-tokenizer": "^2.2.0",
"tsv-groupdata-parser": "^1.1.1",
"usfm-js": "^3.4.0"
}
}