forked from yvele/azure-function-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "azure-function-express",
"version": "1.3.0",
"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": "[email protected]"
},
"contributors": [
"Yves Merlicco <[email protected]>"
],
"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 <7",
"npm": ">=3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "~6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"express": "^4.16.2",
"jest": "^21.2.1"
}
}