-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
{
"name": "kodyfire",
"version": "0.1.36",
"description": "Artifact generator,automation tool and a general purpose low code and nocode generator.",
"typings": "./packages/kodyfire-cli/kodyfire.d.ts",
"directories": {
"bin": "./packages/kodyfire-cli/src/bin"
},
"scripts": {
"watch": "lerna run watch --stream",
"build": "lerna run build --stream",
"changelog": "lerna-changelog",
"lerna:install": "lerna exec -- npm install",
"lerna:link": "lerna link --force-local",
"test": "lerna run test --stream",
"audit": "lerna exec -- npm audit fix --force",
"husky:prepare": "husky install",
"lerna:publish": "lerna publish --force-publish=* patch -y",
"postlerna:publish": "zx scripts/kodyfire/postpublish.mjs",
"prelerna:publish": "zx scripts/kodyfire/prepublish.mjs"
},
"keywords": [
"low-code",
"nocode",
"generator",
"artifact",
"automation",
"tool"
],
"bin": {
"kody": "./packages/kodyfire-cli/src/bin/kody.js",
"cody": "./packages/kodyfire-cli/src/bin/kody.js",
"kodyfire": "./packages/kodyfire-cli/src/bin/kody.js"
},
"author": "NOQTA",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nooqta/kodyfire.git"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"concurrently": "^7.0.0",
"eslint": "^8.9.0",
"husky": "^7.0.4",
"lerna": "^6.4.1",
"lerna-changelog": "^2.2.0",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"ts-node": "^10.8.1",
"typescript": "~4.5.5",
"zx": "^7.1.1"
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
]
},
"dependencies": {
"@types/jest": "^29.4.0"
}
}