forked from gbezyuk/logux-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "logux-sync",
"version": "0.1.2",
"description": "Tool to synchronize events between Logux logs",
"keywords": [
"logux",
"network",
"websocket",
"synchronization"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "logux/logux-sync",
"dependencies": {
"nanoevents": "^0.3.0",
"object-assign": "^4.1.1"
},
"devDependencies": {
"docdash": "^0.4.0",
"eslint": "^3.13.1",
"eslint-config-logux": "^4.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-es5": "^1.0.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"jest": "^18.1.0",
"jsdoc": "^3.4.3",
"lint-staged": "^3.2.7",
"logux-core": "logux/logux-core",
"pre-commit": "^1.2.2",
"rimraf": "^2.5.4",
"ws": "^1.1.1",
"yaspeller": "^3.0.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yarn run cleandocs && yaspeller *.md docs/*.html",
"cleandocs": "yarn run docs && rimraf docs/*.js.html",
"clean": "rimraf docs/ coverage/",
"lint": "eslint *.js test/*.js messages/*.js",
"docs": "jsdoc --configure .jsdocrc *.js",
"test": "jest --coverage && yarn run lint && yarn run spellcheck"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"eslintConfig": {
"extends": "eslint-config-logux"
},
"lint-staged": {
"*.md": "yaspeller",
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}