-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "eevee-source",
"license": "MIT",
"version": "0.1.1",
"description": "A dynamic programminbg language with simple syntax, functional heart and OOP support",
"author": "Maxime Blanc <max@jellycat.fr>",
"repository": "https://github.com/salty-max/gero.git",
"main": "dist/index.js",
"bin": {
"eevee": "./bin/eevee",
"generate_ast": "./bin/generate_ast"
},
"keywords": [
"eevee"
],
"scripts": {
"start:repl": "npx ./bin/eevee",
"test": "node ./__tests__/run",
"lint": "eslint . --fix",
"build": "tsc",
"watch": "tsc -w",
"prepare": "husky install"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.11.4",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"husky": "^7.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"preferGlobal": true,
"dependencies": {
"yargs": "^17.6.0"
}
}