-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "@boxel/boxel-cli",
"version": "0.0.4",
"description": "Boxel Command Line Interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/**/*",
"templates/*",
".env"
],
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"postversion": "git push && git push --tags",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"preversion": "yarn run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "yarn run format && git add -A src"
},
"bin": {
"boxel": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boxelio/boxel-cli.git"
},
"keywords": [
"boxel",
"cli",
"boxos",
"embedded",
"rpi"
],
"author": "Kevin Elliott <kevin@welikeinc.com>",
"license": "",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hapi/hapi": "^18.3.2",
"@types/node": "^12.12.11",
"axios": "^0.19.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"deepmerge": "^4.2.2",
"dotenv": "^8.0.0",
"figlet": "^1.2.4",
"fs": "^0.0.1-security",
"mkdirp": "^0.5.1",
"open": "^6.3.0",
"project-name-generator": "^2.1.7",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
}
}