-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.55 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.55 KB
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
{
"name": "pt-progress",
"version": "0.1.0",
"description": "Utility to convert project progress from MS Office files to Paratext",
"bin": "dist/index.js",
"main": "dist/index",
"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/pt-progress.git"
},
"keywords": [
"excel",
"paratext",
"word"
],
"author": "SIL International",
"license": "MIT",
"bugs": {
"url": "https://github.com/mseag/pt-progress/issues"
},
"homepage": "https://github.com/mseag/pt-progress#readme",
"dependencies": {
"@types/vkbeautify": "^0.99.2",
"commander": "^7.0.0",
"convert-excel-to-json": "^1.7.0",
"path": "^0.12.7",
"vkbeautify": "^0.99.3",
"xml-formatter": "^2.4.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"ava": "^5.2.0",
"eslint": "^7.20.0",
"nodemon": "^2.0.21",
"pkg": "^5.8.1",
"ts-node": "^8.10.2",
"typescript": "^4.1.5"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/**/*"
],
"require": [
"ts-node/register"
]
},
"pkg": {
"assets": [
"src/**/*.ts",
"./tsconfig.json"
],
"targets": [
"node14-win-x64"
]
}
}