forked from vladmandic/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "@vladmandic/build",
"version": "0.9.3",
"description": "Build: Automated CI Platform for NodeJS",
"main": "dist/build.js",
"types": "types/src/build.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"bootstrap": "esbuild --bundle --platform=node --format=cjs --target=es2018 --sourcemap --external:typescript --external:esbuild --external:eslint --external:typedoc --log-level=info --legal-comments='none' --banner:js='#!/usr/bin/env node' --outfile=dist/build.js src/build.ts",
"build": "rimraf build.log && node dist/build.js --profile production",
"dev": "node dist/build.js --profile development",
"lint": "node dist/build.js --profile lint"
},
"bin": {
"build": "./dist/build.js"
},
"author": "Vladimir Mandic <mandic00@live.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladmandic/build/issues"
},
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/build.git"
},
"keywords": [],
"devDependencies": {
"@vladmandic/pilogger": "^0.4.8",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"dayjs": "^1.11.10",
"rimraf": "^5.0.5",
"simple-git": "^3.21.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"esbuild": "^0.19.8",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typescript": "~5.3.0"
}
}