forked from globocom/functions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 KB
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
{
"name": "backstage-functions",
"version": "0.1.0",
"description": "Remote serverless code executor",
"main": "index.js",
"scripts": {
"test": "REDIS_KEY_PREFIX=test istanbul cover _mocha --report lcovonly -- --recursive",
"send_cover": "istanbul-coveralls",
"start_dev": "PORT=8100 nf -j Procfile.local start",
"lint": "eslint lib test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backstage/functions.git"
},
"keywords": [
"serverless",
"sandbox",
"functions",
"backstage"
],
"engines": {
"node": ">=6.10.2"
},
"author": "Backstage Team <backstage@corp.globo.com>",
"license": "MIT",
"dependencies": {
"async": "^2.0.1",
"body-parser": "^1.15.2",
"deepcopy": "^0.6.3",
"express": "^4.14.0",
"backstage-functions-sandbox": "^0.2.2",
"hiredis": "^0.5.0",
"ioredis": "^2.3.0",
"jsonschema": "^1.1.0",
"lodash": "^4.16.2",
"morgan": "^1.7.0",
"uuid": "^3.0.1",
"request": "^2.75.0",
"stack-trace": "^0.0.9",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-string": "^1.2.0",
"deepcopy": "^0.6.3",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"foreman": "^2.0.0",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"sinon": "^1.17.6",
"supertest": "^2.0.0"
}
}