-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
108 lines (108 loc) · 2.9 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "express-version-request",
"version": "1.7.0",
"description": "versions an incoming request to Express based on header or URL",
"main": "index.js",
"scripts": {
"lint": "standard && eslint *.js",
"test": "yarn lint && ava",
"test:watch": "yarn lint && ava --watch",
"test:coverage": "yarn run lint && nyc --reporter=lcov ava --tap",
"coverage:view": "opn coverage/lcov-report/index.html",
"commit": "git-cz",
"docs": "yarn run docs:code && yarn run docs:api",
"docs:api": "doxdox *.js --layout bootstrap --output docs/index.html",
"docs:code": "docco *.js --output docs/code"
},
"keywords": [
"express",
"api",
"version",
"versioned",
"versioning",
"routing",
"router",
"api versioning",
"api version",
"header"
],
"author": "Liran Tal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lirantal/express-version-request.git"
},
"bugs": {
"url": "https://github.com/lirantal/express-version-request/issues"
},
"homepage": "https://github.com/lirantal/express-version-request#readme",
"devDependencies": {
"ava": "^0.25.0",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^2.1.0",
"docco": "^0.8.0",
"doxdox": "^2.0.1",
"eslint": "^4.11.0",
"eslint-plugin-ava": "^5.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-security": "^1.3.0",
"nyc": "^13.2.0",
"opn-cli": "^3.1.0",
"standard": "^11.0.0",
"sinon": "^6.0.0"
},
"nyc": {
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90,
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"check-coverage": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"plugins": [
"node",
"security",
"ava"
],
"extends": [
"plugin:ava/recommended",
"plugin:node/recommended"
],
"rules": {
"node/no-unsupported-features": "off",
"node/no-unpublished-require": "off",
"security/detect-non-literal-fs-filename": "error",
"security/detect-unsafe-regex": "error",
"security/detect-buffer-noassert": "error",
"security/detect-child-process": "error",
"security/detect-disable-mustache-escape": "error",
"security/detect-eval-with-expression": "error",
"security/detect-no-csrf-before-method-override": "error",
"security/detect-non-literal-regexp": "error",
"security/detect-non-literal-require": "error",
"security/detect-object-injection": "error",
"security/detect-possible-timing-attacks": "error",
"security/detect-pseudoRandomBytes": "error"
},
"parserOptions": {
"ecmaFeatures": {
"impliedStrict": true
}
}
}
}