-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "serverless-fn",
"version": "0.0.1",
"description": "This plugin enables support for FN within the [Serverless Framework](https://github.com/serverless).",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "eslint . --cache",
"test": "mocha test/*.test.js",
"examples": "mocha test/examples-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fnproject/serverless-fn.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fnproject/serverless-fn/issues"
},
"homepage": "https://github.com/fnproject/serverless-fn#readme",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"chalk": "^2.0.1",
"fn_js": "github:hibooboo2/fn_js",
"js-yaml": "^3.9.0",
"jszip": "^3.1.3",
"kubernetes-client": "^3.12.0",
"lodash": "^4.17.5",
"moment": "^2.18.1",
"semver": "^5.5.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.1.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.1",
"fs-extra": "^4.0.1",
"mocha": "^3.4.2",
"nock": "9.0.14",
"request": "^2.81.0",
"sinon": "^2.3.6"
}
}