-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 KB
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
66
67
68
69
70
71
72
{
"name": "code-easy-extension",
"license": "MIT",
"private": false,
"version": "0.0.1",
"main": "./dist/main.js",
"author": "lucasdevargassouza",
"description": "Desktop app to build and run node APIs in code easy platform",
"repository": "https://github.com/code-easy-platform/code-easy-extension.git",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && electron ./dist/main.js",
"build:package": "npm run build && npx electron-packager ./ --out=./packages/ code-easy-extension --platform=linux",
"build:snap": "npx electron-installer-snap --src=packages/code-easy-extension-linux-x64/ --dest=installers/",
"build:deb": "npx electron-installer-debian --src ./packages/code-easy-extension-linux-x64/ --dest ./installers/ --arch amd64"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/express": "^4.17.6",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "3.3.0",
"electron": "^10.1.1",
"electron-installer-debian": "^3.1.0",
"electron-installer-snap": "^5.1.0",
"electron-package": "^0.1.0",
"husky": "^4.3.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
},
"dependencies": {
"express": "^4.17.1",
"http-status-codes": "^2.1.4"
},
"keywords": [
"Code easy platform",
"Code easy web",
"typescript",
"Electron",
"low-code",
"tray"
],
"build": {
"appId": "codeeasyextension.codeeasyplatform.com",
"productName": "Code easy extension",
"files": [
"dist/"
],
"linux": {
"target": [
"AppImage"
],
"category": "Development"
},
"mac": {
"category": "public.app-category.developer-tools"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}