-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "swoopi",
"version": "1.1.0",
"description": "star wars loopback api via service proxy to swapi.co",
"author": {
"name": "the Unbearable Professional",
"email": "professor@unbear.pw",
"url": "https://www.unbear.pw/"
},
"repository": {
"type": "git",
"url": "https://www.unbear.pw"
},
"license": "Unlicense",
"licenseUrl": "https://unlicense.org/",
"keywords": [
"starwars",
"loopback-service-proxy",
"loopback"
],
"main": "main.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 dist",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/test\"",
"test:dev": "lb-mocha --allow-console-logs dist/test/**/*.js -w",
"start": "node .",
"debug:watch": "nodemon --inspect --watch ./dist index.js",
"prepublishOnly": "npm run test"
},
"now": {
"files": [
"dist",
"main.js"
]
},
"dependencies": {
"@loopback/boot": "^1.0.2",
"@loopback/cli": "^1.0.2",
"@loopback/context": "^1.0.0",
"@loopback/core": "^1.0.0",
"@loopback/openapi-v3": "^1.0.2",
"@loopback/repository": "^1.0.2",
"@loopback/rest": "^1.1.0",
"@loopback/service-proxy": "^1.0.0",
"loopback-connector-rest": "^3.3.0"
},
"devDependencies": {
"@loopback/build": "^1.0.0",
"@loopback/testlab": "^1.0.0",
"@types/node": "^10.11.2",
"mocha-typescript": "^1.1.17",
"nodemon": "^1.18.5"
}
}