forked from loopbackio/loopback-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.93 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
{
"name": "@loopback/example-log-extension",
"version": "1.1.2",
"description": "An example extension project for LoopBack 4",
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build:apidocs": "lb-apidocs",
"build": "lb-tsc es2017 --outDir dist",
"build:watch": "lb-tsc es2017 --outDir dist --watch",
"clean": "lb-clean *example-log-extension-*.tgz dist package api-docs",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run tslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"verify": "npm pack && tar xf *example-log-extension*.tgz && tree package && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongloop/loopback-next.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"loopback",
"loopback-extension"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/strongloop/loopback-next/issues"
},
"homepage": "https://github.com/strongloop/loopback-next/tree/master/examples/log-extension",
"devDependencies": {
"@loopback/build": "^1.2.1",
"@loopback/testlab": "^1.0.5",
"@loopback/tslint-config": "^2.0.0",
"@types/debug": "0.0.30",
"@types/node": "^10.11.2",
"tslint": "^5.12.0",
"typescript": "^3.3.1"
},
"dependencies": {
"@loopback/context": "^1.5.0",
"@loopback/core": "^1.1.5",
"@loopback/openapi-v3": "^1.2.0",
"@loopback/rest": "^1.5.4",
"chalk": "^2.3.2",
"debug": "^4.0.1"
}
}