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 1
/
Copy pathpackage.json
58 lines (58 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
{
"name": "loopback-next-extension-starter",
"version": "1.0.0",
"description": "A starter project for LoopBack Next Extensions",
"keywords": [
"loopback-extension"
],
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean",
"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",
"prepare": "npm run build",
"pretest": "npm run clean && npm run build",
"test": "lb-dist mocha DIST/test",
"posttest": "npm run lint",
"test:dev": "mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongloop/loopback-next-extension-starter.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/strongloop/loopback-next-extension-starter/issues"
},
"homepage": "https://github.com/strongloop/loopback-next-extension-starter#readme",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"dist6"
],
"dependencies": {
"@loopback/context": "^4.0.0-alpha.14",
"@loopback/core": "^4.0.0-alpha.16",
"@loopback/repository": "^4.0.0-alpha.10",
"@loopback/rest": "^4.0.0-alpha.3"
},
"devDependencies": {
"@loopback/build": "^4.0.0-alpha.3",
"@loopback/testlab": "^4.0.0-alpha.9",
"@types/mocha": "^2.2.43",
"mocha": "^4.0.1"
}
}