This repository was archived by the owner on Jan 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "jale",
"version": "0.7.0",
"description": "Jale is a blazing fast local development environment for MacOS written in Typescript.",
"author": {
"name": "Bjarn Bronsveld",
"email": "bjarn@bronsveld.me",
"url": "https://bjarn.dev/"
},
"main": "./src/jale.js",
"bin": {
"jale": "bin/jale.js"
},
"funding": {
"type": "github-sponsors",
"url": "https://github.com/sponsors/bjarn"
},
"homepage": "https://github.com/bjarn/jale#readme",
"bugs": {
"url": "https://github.com/bjarn/jale/issues"
},
"keywords": [
"local",
"development",
"environment",
"macos",
"jale",
"just another local environment"
],
"repository": "https://github.com/bjarn/jale",
"license": "GPL-3.0",
"preferGlobal": true,
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/commander": "^2.12.2",
"@types/inquirer": "^7.3.3",
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"cli-table": "^0.3.6",
"commander": "^8.0.0",
"execa": "^5.1.1",
"inquirer": "^8.1.1",
"kleur": "^4.1.4",
"listr2": "^3.10.0"
}
}