-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "carpiscript",
"version": "1.0.0",
"description": "CarpiScript es un lenguaje de scripting en castellano desarrollado en TypeScript. Incluye analizador léxico, analizador sintáctico e intérprete.",
"main": "ejecutar.ts",
"scripts": {
"start": "ts-node ejecutar.ts test.ñ",
"build": "tsc --outDir dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeandroBarone/carpiscript.git"
},
"author": "Leandro Barone",
"license": "ISC",
"bugs": {
"url": "https://github.com/LeandroBarone/carpiscript/issues"
},
"homepage": "https://github.com/LeandroBarone/carpiscript#readme",
"devDependencies": {
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"ts-node": "^10.9.2"
}
}