-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
{
"name": "syncsocket",
"version": "0.2.13",
"description": "Synchronized messaging application framework server",
"main": "src/index.js",
"scripts": {
"test": "gulp test",
"cover": "gulp test-cov",
"preversion": "gulp test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "/~https://github.com/woyorus/syncsocket.git"
},
"keywords": [
"syncsocket",
"realtime",
"truetime",
"synchronization",
"events"
],
"author": "Kirill Kravinsky <woyorus@gmail.com> (http://github.com/woyorus)",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/woyorus/syncsocket/issues"
},
"homepage": "/~https://github.com/woyorus/syncsocket",
"devDependencies": {
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.13.2",
"chai": "3.5.0",
"eslint-config-standard": "5.3.5",
"eslint-plugin-promise": "2.0.1",
"eslint-plugin-standard": "2.0.0",
"ghooks": "1.3.2",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-eslint": "3.0.1",
"gulp-istanbul": "1.1.0",
"gulp-mocha": "3.0.1",
"gulp-task-listing": "1.0.1",
"istanbul": "0.4.5",
"mocha": "3.0.2",
"sinon": "1.17.5",
"socket.io-client": "1.4.8",
"supertest": "2.0.0"
},
"dependencies": {
"component-bind": "1.0.0",
"debug": "2.2.0",
"socket.io": "1.4.8",
"syncsocket-client": "0.2.9",
"syncsocket-clock-client": "0.1.11",
"syncsocket-clock-server": "0.1.7",
"uuid": "^3.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
}
}
}