-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
61
62
63
64
65
66
67
{
"name": "golden-thread-api",
"version": "1.0.0",
"description": "Test Project",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "npm run build:dist8 && npm run build:dist10",
"build:apidocs": "lb-apidocs",
"build:current": "lb-tsc",
"build:dist8": "lb-tsc es2017",
"build:dist10": "lb-tsc es2018",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist*",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint: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:current",
"test": "lb-mocha --allow-console-logs \"DIST/test\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs DIST/test/**/*.js && npm run posttest",
"prestart": "npm run build:current",
"start": "node .",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist*/src",
"dist*/index*",
"src"
],
"dependencies": {
"@loopback/boot": "^0.11.5",
"@loopback/context": "^0.11.9",
"@loopback/core": "^0.10.1",
"@loopback/dist-util": "^0.3.3",
"@loopback/openapi-v3": "^0.10.12",
"@loopback/repository": "^0.12.1",
"@loopback/rest": "^0.15.1",
"loopback-connector-mysql": "^5.2.0"
},
"devDependencies": {
"@loopback/build": "^0.6.11",
"@types/node": "^10.1.1",
"@loopback/testlab": "^0.10.10",
"@types/mocha": "^5.0.0",
"mocha": "^5.1.1",
"source-map-support": "^0.5.5"
}
}