-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.56 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
{
"name": "wordmap",
"version": "0.8.2",
"description": "Multi-Lingual Word Alignment Prediction",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts",
"build:docs": "typedoc --out docs --mode modules --target ES6",
"test": "yarn lint && jest",
"prebuild": "rm -rf dist/",
"build": "tsc && cp package.json dist/ && cp README.md dist/",
"predeploy": "yarn test && yarn build",
"deploy": "yarn publish dist",
"postpublish": "git tag v$npm_package_version && git push origin v$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldingWord/wordMAP.git"
},
"bin": {
"wordmap": "cli.js"
},
"jest": {
"preset": "ts-jest"
},
"keywords": [
"word",
"alignment",
"map",
"tc",
"multilingual",
"linguistics",
"prediction",
"bible",
"translation",
"translation",
"alignment",
"aligner",
"word",
"language"
],
"author": "unfoldingword",
"license": "ISC",
"bugs": {
"url": "https://github.com/unfoldingWord/wordMAP/issues"
},
"homepage": "https://wordmap.netlify.com",
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.20",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.4",
"wordmap-lexer": "^0.3.5"
},
"dependencies": {
"@types/yargs": "^11.0.0",
"yargs": "^11.0.0"
},
"peerDependencies": {
"wordmap-lexer": "^0.3.4"
}
}