-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.6 KB
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
{
"name": "liquid-galaxy",
"description": "The Liquid Galaxy client",
"author": {
"name": "Gerard Rovira Sánchez",
"email": "zurfyx@gmail.com",
"url": "zurfyx.com"
},
"version": "2.1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run build:clean",
"build": "tsc",
"build:clean": "rimraf dist",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"postpublish": "npm run build:clean",
"lint": "tslint './src/**/*.{ts,tsx}' --project ./tsconfig.json --type-check",
"pretest": "npm run build",
"test": "jest",
"coverage": "jest --coverage",
"check": "npm-run-all test lint build:clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LiquidGalaxyLAB/liquid-galaxy.git"
},
"keywords": [
"typescript",
"starter",
"library"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LiquidGalaxyLAB/liquid-galaxy/issues"
},
"homepage": "https://github.com/LiquidGalaxyLAB/liquid-galaxy#readme",
"dependencies": {
"@types/node": "^7.0.31",
"bluebird": "^3.5.0",
"firebase": "^4.1.2",
"socket.io-client": "^2.0.3",
"tslib": "^1.7.1",
"what-is-my-ip-address": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^20.0.0",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.6",
"tslint": "^5.4.3",
"tslint-config-airbnb": "^5.1.2",
"typescript": "^2.3.4"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}