1 | {
|
2 | "name": "@loopback/build",
|
3 | "description": "A set of common scripts and default configurations to build LoopBack 4 or other TypeScript modules",
|
4 | "version": "10.1.3",
|
5 | "license": "MIT",
|
6 | "bin": {
|
7 | "lb-tsc": "./bin/compile-package.js",
|
8 | "lb-ttsc": "./bin/compile-package.js",
|
9 | "lb-eslint": "./bin/run-eslint.js",
|
10 | "lb-prettier": "./bin/run-prettier.js",
|
11 | "lb-mocha": "./bin/run-mocha.js",
|
12 | "lb-nyc": "./bin/run-nyc.js",
|
13 | "lb-clean": "./bin/run-clean.js"
|
14 | },
|
15 | "main": "index.js",
|
16 | "author": "IBM Corp. and LoopBack contributors",
|
17 | "copyright.owner": "IBM Corp. and LoopBack contributors",
|
18 | "repository": {
|
19 | "type": "git",
|
20 | "url": "https://github.com/loopbackio/loopback-next.git",
|
21 | "directory": "packages/build"
|
22 | },
|
23 | "engines": {
|
24 | "node": "16 || 18 || 20"
|
25 | },
|
26 | "scripts": {
|
27 | "test": "npm run mocha",
|
28 | "mocha": "node bin/run-mocha --timeout 30000 \"test/integration/*.js\" \"test/unit/*.js\""
|
29 | },
|
30 | "publishConfig": {
|
31 | "access": "public"
|
32 | },
|
33 | "dependencies": {
|
34 | "@loopback/eslint-config": "^14.0.4",
|
35 | "@types/mocha": "^10.0.1",
|
36 | "@types/node": "^16.18.50",
|
37 | "cross-spawn": "^7.0.3",
|
38 | "debug": "^4.3.4",
|
39 | "eslint": "^8.48.0",
|
40 | "fs-extra": "^11.1.1",
|
41 | "glob": "^10.3.4",
|
42 | "lodash": "^4.17.21",
|
43 | "mocha": "^10.2.0",
|
44 | "nyc": "^15.1.0",
|
45 | "prettier": "^3.0.2",
|
46 | "rimraf": "^5.0.1",
|
47 | "source-map-support": "^0.5.21",
|
48 | "typescript": "~5.2.2"
|
49 | },
|
50 | "gitHead": "9107199cdf1597260ee03e2a903b7db0dec8445d"
|
51 | }
|