forked from BogdanMihaiciuc/ThingCLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 943 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "bm-thing-cli",
"version": "2.1.6",
"description": "Command line tools for the Thingworx VSCode Project",
"bin": {
"twc": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./scripts/clean.js && tsc -p tsconfig.json && chmod +x dist/index.js"
},
"keywords": [
"thingworx",
"typescript",
"transformer"
],
"author": "Bogdan Mihaiciuc",
"license": "MIT",
"files": [
"dist",
"license",
"readme"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/adm-zip": "0.5.0",
"@types/node": "^18.15.0"
},
"dependencies": {
"adm-zip": "0.5.10",
"bm-thing-transformer": "2.1.6",
"dotenv": "^16.0.0",
"enquirer": "^2.3.6",
"typescript": "5.4.5",
"xml2js": "^0.6.2"
}
}