forked from emanuelcasco/azure-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"name": "azure-middleware",
"version": "1.0.1",
"description": "Node.js middleware engine for Azure Functions",
"keywords": [
"azure",
"middlewares",
"middleware handler",
"middleware engine",
"azure functions"
],
"engines": {
"node": ">=8.9.4",
"npm": ">=6.5.0"
},
"scripts": {
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "./node_modules/eslint/bin/eslint.js \"**/*.js\"",
"lint-diff": "git diff --name-only --cached --relative | grep \\\\.js$ | xargs ./node_modules/eslint/bin/eslint.js",
"lint-fix": "./node_modules/eslint/bin/eslint.js \"**/*.js\" --fix",
"precommit": "npm run lint-diff",
"outdated": "npm outdated --depth 0",
"pretest": "npm run lint",
"cover": "nyc --reporter=text npm test",
"test": "NODE_ENV=testing ./node_modules/mocha/bin/_mocha test/index.test.js --timeout 6000 --exit",
"test-inspect": "NODE_ENV=testing node --inspect --debug-brk ./node_modules/mocha/bin/_mocha \"**/*.test.js\""
},
"cacheDirectories": [
"node_modules"
],
"main": "app.js",
"author": "Emanuel Casco",
"homepage": "https://github.com/emanuelcasco/azure-middleware",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/emanuelcasco/azure-middleware.git"
},
"bugs": {
"url": "https://github.com/emanuelcasco/azure-middleware/issues"
},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-es2015": "6.24.1",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.3.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-prettier": "^2.1.1",
"husky": "^0.14.3",
"istanbul": "^0.4.3",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^14.1.1",
"prettier": "^1.8.2",
"prettier-eslint": "^8.2.1"
},
"dependencies": {
"joi": "^14.3.0"
}
}