-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
68
69
{
"name": "@loopback/socketio",
"version": "1.0.0-alpha.1",
"description": "A Socket IO extencion for LoopBack Next",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "npm run build:dist && npm run build:dist6",
"build:dist": "tsc --target es2017 --outDir dist",
"build:dist6": "tsc --target es2015 --outDir dist6",
"build:watch": "tsc --watch",
"clean": "rm -rf dist dist6",
"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 -c tslint.full.json --project tsconfig.json --type-check",
"tslint:fix": "npm run lint -- --fix",
"prepublish": "npm run build",
"pretest": "npm run lint:fix && npm run clean && npm run build",
"test": "/bin/bash -c '[[ $(node -v) =~ [[:digit:]]+ ]] && [[ ${BASH_REMATCH[0]} -gt 6 ]]' && mocha dist/test || mocha dist6/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": "",
"contributors": [
{
"name": "Jonathan Casarrubias",
"email": "[email protected]",
"url": "https://github.com/mean-expert-official"
}
],
"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",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4"
},
"devDependencies": {
"@loopback/testlab": "^4.0.0-alpha.9",
"@types/mocha": "^2.2.43",
"@types/socket.io": "^1.4.31",
"mocha": "^3.5.3",
"prettier": "^1.7.4",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}