-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.42 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": "sfm-utils",
"version": "0.1.0",
"description": "Utility to convert text files to suitable SFM files for Paratext",
"bin": "dist/index.js",
"main": "dist/index",
"type": "module",
"scripts": {
"build": "npx tsc -p .",
"lint": "eslint . --ext .ts",
"test": "ava --verbose",
"watch": "npx tsc -w & nodemon -q -w dist",
"publish": "pkg --out-path deploy/ package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mseag/sfm-utils.git"
},
"keywords": [
"toolbox",
"paratext"
],
"author": "SIL International",
"license": "MIT",
"bugs": {
"url": "https://github.com/mseag/sfm-utils/issues"
},
"homepage": "https://github.com/mseag/sfm-utils#readme",
"dependencies": {
"commander": "^11.1.0",
"node-unrtf": "^4.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^18.18.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"ava": "^5.1.1",
"eslint": "^8.51.0",
"nodemon": "^3.0.1",
"pkg": "^5.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/**/*"
],
"require": [
"ts-node/register"
]
},
"pkg": {
"assets": [
"src/**/*.ts",
"./tsconfig.json"
],
"targets": [
"node18-win-x64"
]
}
}