-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.88 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "express-flow-extensions",
"version": "1.0.4",
"description": "Set of tools to accelerate the development with express using a functional approach.",
"main": "index.js",
"dependencies": {
"celebrate": "^9.0.0",
"http-status": "^1.2.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.5",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-prettier": "^3.0.0",
"express": "^4.16.4",
"http-server": "^0.11.1",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"nsp": "^3.2.1",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1",
"promisify-supertest": "^1.0.0",
"standard": "^12.0.1",
"supertest": "^3.3.0",
"documentation": "^8.1.2",
"esdoc": "^1.1.0",
"esdoc-brand-plugin": "^1.0.1",
"esdoc-custom-theme": "^1.4.2",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-standard-plugin": "^1.0.0"
},
"scripts": {
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint */**/*.js -f html -o ./test/reports/linter/index.html",
"test": "jest --coverage",
"make:publish": "bin/publish.sh",
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"serve:coverage": "http-server coverage/ -o",
"serve:linter": "http-server test/report/linter -o",
"test:coverage": "npm test",
"prepublishOnly": "nsp check",
"docs": "npm run doc:methods && esdoc",
"doc:methods": "documentation build src/** -f md -o manual/Documentation.md && echo \"# Documentation\n$(cat manual/Documentation.md)\" > manual/Documentation.md",
"serve:docs": "http-server docs/ -o"
},
"lint-staged": {
"*.js": [
"prettier-eslint --single-quote --bracket-spacing true --print-width 80 --semi --write",
"eslint",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/madoos/express-flow-extensions"
},
"author": {
"name": "Maurice Domínguez",
"email": "maurice.ronet.dominguez@gmail.com",
"url": "https://github.com/madoos"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/madoos/express-flow-extensions/issues"
},
"homepage": "https://github.com/madoos/express-flow-extensions#readme",
"keywords": [
"express",
"return",
"router",
"flow",
"tools",
"compose",
"middleware",
"route",
"handler",
"fp"
]
}