-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "@building-properties-manager/cli",
"version": "1.0.0",
"description": "CLI client clients for managing structured building properties - based on IFC, but highly simplified. Should convert nicely both ways though.",
"exports": "./build/cli.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"start": "npm run build && ./bin/cli.js interactive",
"cli": "npm run build && node ./bin/cli.js",
"clean": "rimraf ./build && rimraf tsconfig.tsbuildinfo"
},
"bin": {
"bpm": "./bin/cli.js"
},
"author": "Johan Svensson",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.7",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.4.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@building-properties-manager/core": "^1.0.0",
"ansi-colors-es6": "^5.0.0",
"enquirer": "^2.3.6",
"lodash": "^4.17.21",
"lowdb": "^3.0.0",
"yargs": "^17.2.1"
}
}