forked from logux/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
{
"name": "logux-server",
"version": "0.1.1",
"description": "Logux server-side framework",
"keywords": [
"logux",
"server"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "logux/logux-server",
"dependencies": {
"bunyan": "^1.8.9",
"chalk": "^1.1.3",
"logux-core": "logux/logux-core",
"logux-sync": "logux/logux-sync",
"nanoevents": "^0.3.0",
"semver": "^5.3.0",
"shortid": "^2.2.8",
"strip-ansi": "^3.0.1",
"ws": "^2.2.3",
"yargs": "^7.0.2",
"yyyy-mm-dd": "^1.0.1"
},
"devDependencies": {
"docdash": "^0.4.0",
"eslint": "^3.19.0",
"eslint-config-logux": "^11.0.1",
"eslint-config-standard": "^10.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-security": "^1.3.0",
"eslint-plugin-standard": "^2.2.0",
"jest": "^19.0.2",
"jsdoc": "^3.4.3",
"lint-staged": "^3.4.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"yaspeller-ci": "^0.4.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yarn run docs && yaspeller-ci *.md docs/*.html",
"clean": "rimraf docs/ coverage/",
"lint": "eslint *.js test/**/*.js reporters/**/*.js",
"docs": "jsdoc --configure .jsdocrc *.js",
"test": "jest --coverage && yarn run lint && yarn run spellcheck"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/server.js"
]
},
"engines": {
"node": ">=4.0.0"
},
"eslintConfig": {
"extends": "eslint-config-logux/node4"
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}