This repository was archived by the owner on Jun 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·135 lines (135 loc) · 4.47 KB
/
package.json
File metadata and controls
executable file
·135 lines (135 loc) · 4.47 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "corenode",
"version": "0.28.26",
"git": "https://github.com/ragestudio/corenode",
"funding": [
{
"url": "https://www.paypal.com/paypalme/RageStudioES"
}
],
"publishConfig": {
"access": "public"
},
"bin": {
"corenode-trans": "./bin/corenode-trans",
"corenode-node": "./bin/corenode-node",
"corenode-cli": "./bin/cli/index.js",
"corenode": "./bin/core/index.js"
},
"license": "MIT",
"main": "./dist/index.js",
"files": [
"**/**"
],
"scripts": {
"linkAll": "npm run builder && npm run link:dist",
"link:dist": "cd ./dist && yarn link && cd - && yarn link 'corenode'",
"builder": "node ./scripts/build.js",
"build": "yarn cli:local build --packages --parallel --fix --clean",
"cli:local": "cross-env LOCAL_BIN=true node ./dist/bin/cli/index.js",
"cli:prod": "cross-env LOCAL_BIN=false node ./dist/bin/cli/index.js",
"cli:debug": "cross-env LOCAL_BIN=true DEBUG=true node --inspect-brk ./dist/bin/cli/index.js",
"core:local": "cross-env LOCAL_BIN=true node ./dist/bin/core/index.js",
"core:prod": "cross-env LOCAL_BIN=false node ./dist/bin/core/index.js",
"core:debug": "cross-env LOCAL_BIN=true DEBUG=true node --inspect-brk ./dist/bin/core/index.js",
"release:next": "yarn run build && node ./dist/bin/cli/index.js publish --preRelease --npm --fast --github --packages",
"release:prod": "yarn run build && node ./dist/bin/cli/index.js publish --npm --github --fast --packages",
"update:deps": "yarn upgrade-interactive --latest",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"generate": "corenode-node scripts/generate.js",
"test": "./scripts/tests.js"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"7zip-bin": "^5.1.1",
"@corenode/git-lib": "0.28.26",
"@corenode/helpers": "0.28.26",
"@corenode/pkg-manager": "0.28.26",
"@corenode/utils": "0.28.26",
"bl": "^5.0.0",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"cross-env": "^7.0.3",
"dargs": "^8.1.0",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"extract-first-json": "^1.0.1",
"fast-glob": "^3.2.7",
"filesize": "^8.0.3",
"glob": "^7.2.0",
"lines-and-columns": "^1.1.6",
"listr": "^0.14.2",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mz": "^2.7.0",
"node-7z": "^3.0.0",
"npm": "^8.1.1",
"npm-package-arg": "^8.1.5",
"npm-registry-fetch": "^11.0.0",
"open": "^8.4.0",
"pirates": "^4.0.1",
"read-package-json": "^4.1.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"signal-exit": "^3.0.5",
"smart-circular": "^1.0.2",
"stacktrace-js": "^2.0.2",
"ts-interface-checker": "^1.0.2",
"uuid": "^8.3.2",
"wcwidth": "^1.0.1",
"websocket": "^1.0.34",
"winston": "^3.3.3",
"yargs-parser": "^20.2.9"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@types/babel__core": "7.1.16",
"@types/babel__traverse": "7.14.2",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.2",
"@types/mocha": "^9.0.0",
"@types/mz": "^2.7.4",
"@types/node": "^16.11.4",
"@vercel/ncc": "^0.31.1",
"cli-progress": "^3.9.1",
"codecov": "^3.8.1",
"corenode": "^0.28.10",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nexe": "^1.1.6",
"node-gyp": "^8.3.0",
"nodemon": "^2.0.14",
"nyc": "^15.1.0",
"pkg": "^5.3.3",
"prettier": "^2.0.5",
"sucrase": "^3.20.3",
"through2": "^4.0.2",
"ts-interface-builder": "^0.3.2",
"typescript": "^4.4.4",
"vinyl-fs": "^2.4.1"
}
}