-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "tsv-groupdata-parser",
"version": "1.1.1",
"description": "Parses the translationNotes TSVs files to generate the GroupIndex and GroupData for the translationCore Desktop app.",
"main": "lib/index.js",
"scripts": {
"validate-quotes": "babel-node scripts/validateQuotes.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "bash -c \"eslint ./src && jest\"",
"prebuild": "rm -rf ./lib",
"build": "babel src -d lib",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"doPack": "npm test && npm run build && npm run pack",
"postpublish": "git tag v$npm_package_version && git push origin v$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldingWord/tsv-groupdata-parser.git"
},
"files":[
"lib/*"
],
"keywords": [
"tsv",
"translationNotes",
"parser"
],
"author": "@unfoldingword",
"license": "ISC",
"bugs": {
"url": "https://github.com/unfoldingWord/tsv-groupdata-parser/issues"
},
"homepage": "https://github.com/unfoldingWord/tsv-groupdata-parser#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"deep-equal": "1.0.1",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"string-punctuation-tokenizer": "^2.2.0"
},
"dependencies": {
"bible-reference-range": "^1.0.1",
"fs-extra": "^7.0.1",
"ospath": "^1.2.2",
"path-extra": "^4.3.0",
"semver": "^6.1.1",
"tsvtojson": "^1.0.1",
"uw-tsv-parser": "1.0.3"
},
"peerDependencies": {
"string-punctuation-tokenizer": "^2.0.0"
}
}