This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "tony-cli",
"version": "1.0.0",
"description": "Command line interface for the Tony programming language",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --extensions .ts",
"start": "yarn link && nodemon --watch src --exec 'yarn build' -e ts",
"lint": "prettier --check '**/*.{ts,js}' && eslint src --ext .ts",
"prettier": "prettier --write '**/*.{ts,js}'"
},
"engines": {
"node": ">=12.0"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/tony-lang/cli.git"
},
"keywords": [
"cli"
],
"author": "Jonas Hübotter",
"license": "MIT",
"bugs": {
"url": "https://github.com/tony-lang/cli/issues"
},
"homepage": "https://tony-lang.github.io/docs/cli/install",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^6.2.1",
"indefinite": "^2.4.1",
"tony-lang": "file:.yalc/tony-lang",
"tree-sitter": "^0.16.2"
},
"bin": {
"tony": "dist/index.js"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.7",
"@types/indefinite": "^2.3.1",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}