-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "iptv-playlist-editor",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"bin": "index.js",
"dependencies": {
"bindings": "^1.5.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"fs-extra": "^9.0.0",
"hbs": "^4.1.1",
"i18n": "^0.9.0",
"lzma-native": "^6.0.1",
"mariadb": "^2.3.1",
"moment": "^2.25.1",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.6",
"open": "^7.0.3",
"sequelize": "^5.21.3",
"sqlite3": "^4.1.1",
"xml-escape": "^1.1.0",
"xmltv": "^0.3.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"east": "^1.3.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2",
"patch-package": "^6.2.1",
"pkg": "^4.4.4",
"postinstall-postinstall": "^2.1.0",
"renamer": "^1.1.4",
"sequelize-cli": "^5.5.1"
},
"scripts": {
"beforebuild": "renamer -f .node -r .foolpkg **/*.node",
"build": "yarn beforebuild && yarn buildpkg && yarn afterbuild",
"buildpkg": "pkg . --options expose-gc --target mac",
"afterbuild": "renamer -f .foolpkg -r .node **/*.foolpkg",
"postinstall": "patch-package",
"start": "node ."
},
"pkg": {
"assets": [
"views/**/*",
"models/**/*.js",
"migrations/**/*.js"
],
"targets": [
"node12"
]
}
}