-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "@loopback/build",
"description": "A set of common scripts and default configurations to build LoopBack 4 or other TypeScript modules",
"version": "12.0.2",
"license": "MIT",
"bin": {
"lb-tsc": "./bin/compile-package.js",
"lb-ttsc": "./bin/compile-package.js",
"lb-eslint": "./bin/run-eslint.js",
"lb-prettier": "./bin/run-prettier.js",
"lb-mocha": "./bin/run-mocha.js",
"lb-nyc": "./bin/run-nyc.js",
"lb-clean": "./bin/run-clean.js"
},
"main": "index.js",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "packages/build"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"test": "npm run mocha",
"mocha": "node bin/run-mocha --timeout 30000 \"test/integration/*.js\" \"test/unit/*.js\""
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@loopback/eslint-config": "^16.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^16.18.126",
"cross-spawn": "^7.0.6",
"debug": "^4.4.1",
"eslint": "^8.57.1",
"fs-extra": "^11.3.1",
"glob": "^11.0.3",
"lodash": "^4.17.21",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"rimraf": "^5.0.10",
"source-map-support": "^0.5.21",
"typescript": "~5.2.2"
}
}