UNPKG

1.35 kBJSONView Raw
1{
2 "name": "generz",
3 "version": "0.8.1",
4 "description": "CLI program that generates code parts for compilers",
5 "engines": {
6 "node": ">=16"
7 },
8 "main": "dist/main.js",
9 "files": [
10 "dist/**/*"
11 ],
12 "bin": {
13 "generz": "dist/main.js"
14 },
15 "scripts": {
16 "clean:dist": "rimraf dist/",
17 "build": "tsc",
18 "prepack": "npm run clean:dist && npm run build",
19 "prestart": "npm run build",
20 "pretest": "npm run build",
21 "postversion": "git push && git push --tags",
22 "start": "node --enable-source-maps dist/main.js",
23 "test": "jest",
24 "ts-node": "ts-node"
25 },
26 "repository": {
27 "type": "git",
28 "url": "git+https://github.com/pintarj/generz.git"
29 },
30 "keywords": [
31 "compilers",
32 "code",
33 "generation",
34 "codegen"
35 ],
36 "author": "Janez Pintar <pintarj.zero@gmail.com>",
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/pintarj/generz/issues"
40 },
41 "homepage": "https://github.com/pintarj/generz#readme",
42 "devDependencies": {
43 "@types/jest": "^29.5.11",
44 "@types/node": "^16.18.70",
45 "dedent": "^1.5.1",
46 "jest": "^29.7.0",
47 "rimraf": "^5.0.5",
48 "ts-jest": "^29.1.1",
49 "ts-node": "^10.9.2",
50 "typescript": "^5.3.3"
51 },
52 "dependencies": {
53 "chalk": "^4.1.2",
54 "yargs": "^17.7.2"
55 }
56}