-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "azure-function-express",
"version": "2.0.0",
"sideEffects": false,
"description": "Allows Express usage with Azure Function",
"keywords": [
"azure function",
"express",
"connect",
"azure",
"koa"
],
"homepage": "https://github.com/yvele/azure-function-express",
"bugs": {
"url": "https://github.com/yvele/azure-function-express/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/yvele/azure-function-express"
},
"files": [
"lib/"
],
"main": "lib/index.js",
"author": {
"name": "Merlicco Yves",
"email": "merlicco@gmail.com"
},
"contributors": [
"Yves Merlicco <merlicco@gmail.com>"
],
"scripts": {
"bootstrap": "npm install",
"build": "rm -rf lib && babel src --out-dir lib",
"clean": "rm -rf lib coverage node_modules",
"clean:build": "rm -rf lib",
"clean:npm": "rm -rf node_modules",
"coverage": "jest --coverage",
"publish": "npm run validate && npm run build && npm publish",
"style": "eslint src/**",
"test": "jest",
"validate": "npm run style && npm run coverage"
},
"engines": {
"node": ">=6.11.2 <11",
"npm": ">=6"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"express": "^4.16.3",
"jest": "^23.5.0"
}
}