This repository has been archived by the owner on Feb 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 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
{
"name": "loopback4-extension-typeorm",
"version": "0.1.1",
"description": "A component to provide TypeORM in Loopback 4",
"keywords": [
"loopback",
"loopback-extension"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build": "tsc --outDir dist --target es2017",
"build:watch": "tsc --outDir dist --target es2017 --watch",
"clean": "rm -rf dist",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "tslint .",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run clean && npm run build",
"posttest": "npm run lint",
"start": "npm run build && node .",
"prepare": "npm run build",
"test": "npm run build && node ./dist/test/setup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback4-extension-typeorm"
},
"author": "",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist"
],
"dependencies": {
"@loopback/context": "^4.0.0-alpha.18",
"@loopback/core": "^4.0.0-alpha.20",
"typeorm": "^0.1.6"
},
"devDependencies": {
"@loopback/build": "^4.0.0-alpha.5",
"@loopback/testlab": "^4.0.0-alpha.14",
"@types/debug": "0.0.30",
"@types/dockerode": "^2.5.1",
"@types/mocha": "^2.2.44",
"debug": "^3.1.0",
"dockerode": "^2.5.3",
"mocha": "^4.0.1",
"mysql": "^2.15.0",
"prettier": "^1.7.3",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
}
}