-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.08 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "comunicator",
"version": "3.1.0",
"description": "The 720kb notifier api (atm it uses websockets)",
"license": "MIT",
"homepage": "https://github.com/720kb/comunicator",
"keywords": [
"ws",
"notify",
"messaging"
],
"bugs": {
"url": "http://github.com/720kb/comunicator/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/720kb/comunicator.git"
},
"main": "./dist/node/comunicator.js",
"dependencies": {
"debug": "^2.2.0",
"joi": "^8.0.2",
"jsonwebtoken": "^7.4.1",
"rxjs": "^5.0.0-beta.2",
"ws": "^2.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-rollup": "^1.1.1",
"code": "^2.1.0",
"del": "^2.2.0",
"eslint": "^2.2.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^2.0.0",
"gulp-header": "^1.7.1",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-plumber": "^1.0.1",
"gulp-shell": "^0.5.2",
"gulp-sourcemaps": "^1.6.0",
"hapi": "^13.0.0",
"husky": "^0.11.1",
"inert": "^3.2.0",
"jscs": "^2.10.0",
"jshint": "^2.9.1-rc2",
"jshint-stylish": "^2.1.0",
"lab": "^9.1.0",
"node-inspector": "^0.12.5",
"require-dir": "^0.3.0",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-uglify": "^0.2.0",
"run-sequence": "^1.1.5",
"rxjs-es": "^5.0.0-beta.2"
},
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"example": "npm run-script test && gulp example",
"example-debug": "npm run-script test && gulp example-debug",
"precommit": "gulp test-pre-commit",
"preversion": "npm run-script test",
"version": "./tasks/bower-version-bump && git add -A .",
"postversion": "git push && git push --tags"
},
"author": {
"name": "Dario Andrei",
"email": "[email protected]",
"url": "https://github.com/wouldgo"
},
"contributors": [
{
"name": "Filippo Oretti",
"email": "[email protected]",
"url": "https://github.com/45kb"
}
]
}