-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 854 Bytes
/
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
{
"name": "kmlprocessor",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "tsc --build --force",
"buildAndStart": "npm run build && npm run start",
"start": "node --experimental-modules --es-module-specifier-resolution=node dist/index.js",
"devStart": "nodemon -e ts --exec \"tsc && node --experimental-modules --es-module-specifier-resolution=node dist/index.js || exit 1\""
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"config-ini-parser": "^1.5.9",
"latinize": "^0.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.1.5",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/latinize": "^0.2.15",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2"
}
}